delete *.im files
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / main / java / org / onap / sfc / entity / PortChainReq4N.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 package org.onap.sfc.entity;
17
18 import java.util.ArrayList;
19
20 public class PortChainReq4N {
21     private String sdnControllerId;
22     private String url;
23     private String name;
24     private String description;
25     private ArrayList<String> flowClassifiers;
26     private ArrayList<String> portPairGroups;
27     private boolean symmetric;
28
29     public String getUrl() {
30         return url;
31     }
32
33     public void setUrl(String url) {
34         this.url = url;
35     }
36
37     public String getSdnControllerId() {
38         return sdnControllerId;
39     }
40
41     public void setSdnControllerId(String sdnControllerId) {
42         this.sdnControllerId = sdnControllerId;
43     }
44
45     public String getName() {
46         return name;
47     }
48
49     public void setName(String name) {
50         this.name = name;
51     }
52
53     public String getDescription() {
54         return description;
55     }
56
57     public void setDescription(String description) {
58         this.description = description;
59     }
60
61     public ArrayList<String> getFlowClassifiers() {
62         return flowClassifiers;
63     }
64
65     public void setFlowClassifiers(ArrayList<String> flowClassifiers) {
66         this.flowClassifiers = flowClassifiers;
67     }
68
69     public ArrayList<String> getPortPairGroups() {
70         return portPairGroups;
71     }
72
73     public void setPortPairGroups(ArrayList<String> portPairGroups) {
74         this.portPairGroups = portPairGroups;
75     }
76
77     public boolean isSymmetric() {
78         return symmetric;
79     }
80
81     public void setSymmetric(boolean symmetric) {
82         this.symmetric = symmetric;
83     }
84 }