Renderer and OLM update
[transportpce.git] / olm / src / main / java / org / opendaylight / transportpce / olm / util / OtsPmHolder.java
1 /*
2  * Copyright © 2017 AT&T and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.transportpce.olm.util;
9
10 /**
11  * The Class OtsPmHolder.
12  */
13 public class OtsPmHolder {
14
15     /** The ots parameter name.*/
16     private String otsParameterName;
17     /** The ots parameter value.*/
18     private Double otsParameterVal;
19
20     /** The ots interface name.*/
21     private String otsInterfaceName;
22
23     public OtsPmHolder(String otsParameterName,Double otsParameterVal,String otsInterfaceName) {
24         this.otsParameterName = otsParameterName;
25         this.otsParameterVal = otsParameterVal;
26         this.otsInterfaceName = otsInterfaceName;
27     }
28
29     public String getOtsParameterName() {
30         return otsParameterName;
31     }
32
33     public void setOtsParameterName(String otsParameterName) {
34         this.otsParameterName = otsParameterName;
35     }
36
37     public Double getOtsParameterVal() {
38         return otsParameterVal;
39     }
40
41     public void setOtsParameterVal(Double otsParameterVal) {
42         this.otsParameterVal = otsParameterVal;
43     }
44
45     public String getOtsInterfaceName() {
46         return otsInterfaceName;
47     }
48
49     public void setOtsInterfaceName(String otsInterfaceName) {
50         this.otsInterfaceName = otsInterfaceName;
51     }
52
53 }