0eda970669c2dff966b6b23bbc631640dc3fa4ad
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / main / java / org / onap / sfc / entity / portpair / PortInfo.java
1 /**
2  * Copyright 2016 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.sfc.entity.portpair;
18
19
20 import com.google.gson.annotations.SerializedName;
21
22 public class PortInfo {
23     private String encapsulation;
24     private String ip;
25     private String mac;
26     @SerializedName("port-name")
27     private String portName;
28
29     public String getEncapsulation() {
30         return encapsulation;
31     }
32
33
34     public String getPortName() {
35         return portName;
36     }
37
38     public void setPortName(String portName) {
39         this.portName = portName;
40     }
41
42     public void setEncapsulation(String encapsulation) {
43         this.encapsulation = encapsulation;
44     }
45
46     public String getIp() {
47         return ip;
48     }
49
50     public void setIp(String ip) {
51         this.ip = ip;
52     }
53
54     public String getMac() {
55         return mac;
56     }
57
58     public void setMac(String mac) {
59         this.mac = mac;
60     }
61 }