Renderer and OLM update
[transportpce.git] / olm / src / main / java / org / opendaylight / transportpce / olm / util / RoadmLinks.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  * The Class RoadmLinks.
11  */
12 public class RoadmLinks {
13
14     /** The src node id. */
15     private String srcNodeId;
16
17     /** The src tp id. */
18     private String srcTpId;
19
20     /** The dest node id. */
21     private String destNodeId;
22
23     /** The dest tpid. */
24     private String destTpid;
25
26     /**
27      * Gets the src node id.
28      *
29      * @return the src node id
30      */
31     public String getSrcNodeId() {
32         return srcNodeId;
33     }
34
35     /**
36      * Sets the src node id.
37      *
38      * @param srcNodeId the new src node id
39      */
40     public void setSrcNodeId(String srcNodeId) {
41         this.srcNodeId = srcNodeId;
42     }
43
44     /**
45      * Gets the src tp id.
46      *
47      * @return the src tp id
48      */
49     public String getSrcTpId() {
50         return srcTpId;
51     }
52
53     /**
54      * Sets the src tp id.
55      *
56      * @param srcTpId the new src tp id
57      */
58     public void setSrcTpId(String srcTpId) {
59         this.srcTpId = srcTpId;
60     }
61
62     /**
63      * Gets the dest node id.
64      *
65      * @return the dest node id
66      */
67     public String getDestNodeId() {
68         return destNodeId;
69     }
70
71     /**
72      * Sets the dest node id.
73      *
74      * @param destNodeId the new dest node id
75      */
76     public void setDestNodeId(String destNodeId) {
77         this.destNodeId = destNodeId;
78     }
79
80     /**
81      * Gets the dest tpid.
82      *
83      * @return the dest tpid
84      */
85     public String getDestTpid() {
86         return destTpid;
87     }
88
89     /**
90      * Sets the dest tpid.
91      *
92      * @param destTpid the new dest tpid
93      */
94     public void setDestTpid(String destTpid) {
95         this.destTpid = destTpid;
96     }
97
98 }