AT&T 1712 and 1802 release code
[so.git] / bpmn / MSOCoreBPMN / src / main / java / org / openecomp / mso / bpmn / core / domain / TunnelConnect.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.bpmn.core.domain;\r
22 \r
23 import java.io.Serializable;\r
24 \r
25 import com.fasterxml.jackson.annotation.JsonRootName;\r
26 \r
27 /**\r
28  * This class represents the specifics of a tunnel\r
29  * cross connect piece of a resource\r
30  *\r
31  * @author cb645j\r
32  *\r
33  *TODO This may change to house both isp speeds\r
34  */\r
35 @JsonRootName("tunnelConnect")\r
36 public class TunnelConnect extends JsonWrapper implements Serializable {\r
37 \r
38         private static final long serialVersionUID = 1L;\r
39         private String id;\r
40         private String upBandwidth;\r
41         private String downBandwidth;\r
42         private String upBandwidth2;\r
43         private String downBandwidth2;\r
44 \r
45 \r
46         public String getId() {\r
47                 return id;\r
48         }\r
49         public void setId(String id) {\r
50                 this.id = id;\r
51         }\r
52         public String getUpBandwidth() {\r
53                 return upBandwidth;\r
54         }\r
55         public void setUpBandwidth(String upBandwidth) {\r
56                 this.upBandwidth = upBandwidth;\r
57         }\r
58         public String getDownBandwidth() {\r
59                 return downBandwidth;\r
60         }\r
61         public void setDownBandwidth(String downBandwidth) {\r
62                 this.downBandwidth = downBandwidth;\r
63         }\r
64         public String getUpBandwidth2() {\r
65                 return upBandwidth2;\r
66         }\r
67         public void setUpBandwidth2(String upBandwidth2) {\r
68                 this.upBandwidth2 = upBandwidth2;\r
69         }\r
70         public String getDownBandwidth2() {\r
71                 return downBandwidth2;\r
72         }\r
73         public void setDownBandwidth2(String downBandwidth2) {\r
74                 this.downBandwidth2 = downBandwidth2;\r
75         }\r
76 \r
77 }\r