Fix License Header of vfc-driver
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / main / java / org / openo / sfc / entity / PortPairGroupReq4N.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.openo.sfc.entity;
18
19 import java.util.List;
20
21
22 public class PortPairGroupReq4N {
23     String sdnControllerId;
24     String url;
25     String name;
26     String description;
27     List<String> portPairs;
28
29     public String getName() {
30         return name;
31     }
32
33     public void setName(String name) {
34         this.name = name;
35     }
36
37     public String getDescription() {
38         return description;
39     }
40
41     public String getSdnControllerId() {
42         return sdnControllerId;
43     }
44
45     public void setSdnControllerId(String sdnControllerId) {
46         this.sdnControllerId = sdnControllerId;
47     }
48
49     public void setDescription(String description) {
50         this.description = description;
51     }
52
53     public List<String> getPortPairs() {
54         return portPairs;
55     }
56
57     public void setPortPairs(List<String> portPairs) {
58         this.portPairs = portPairs;
59     }
60
61     public String getUrl() {
62         return url;
63     }
64
65     public void setUrl(String url) {
66         this.url = url;
67     }
68 }