rename openo to onap
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / main / java / org / onap / sfc / entity / portpair / PortPairReq4N.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.portpair;
17
18 import java.util.Map;
19
20
21 public class PortPairReq4N {
22     private String sdnControllerId;
23     private String url;
24     private String name;
25     private String description;
26     private String sfType;
27     private boolean nshAware;
28     private boolean requestReclassification;
29     private PortInfo ingress;
30     private PortInfo egress;
31     private Map sfParam;
32
33     public String getSdnControllerId() {
34         return sdnControllerId;
35     }
36
37     public void setSdnControllerId(String sdnControllerId) {
38         this.sdnControllerId = sdnControllerId;
39     }
40
41     public String getName() {
42         return name;
43     }
44
45     public void setName(String name) {
46         this.name = name;
47     }
48
49     public String getDescription() {
50         return description;
51     }
52
53     public void setDescription(String description) {
54         this.description = description;
55     }
56
57     public String getSfType() {
58         return sfType;
59     }
60
61     public void setSfType(String sfType) {
62         this.sfType = sfType;
63     }
64
65     public boolean isNshAware() {
66         return nshAware;
67     }
68
69     public void setNshAware(boolean nshAware) {
70         this.nshAware = nshAware;
71     }
72
73     public boolean isRequestReclassification() {
74         return requestReclassification;
75     }
76
77     public void setRequestReclassification(boolean requestReclassification) {
78         this.requestReclassification = requestReclassification;
79     }
80
81     public PortInfo getIngress() {
82         return ingress;
83     }
84
85     public void setIngress(PortInfo ingress) {
86         this.ingress = ingress;
87     }
88
89     public PortInfo getEgress() {
90         return egress;
91     }
92
93     public void setEgress(PortInfo egress) {
94         this.egress = egress;
95     }
96
97     public Map getSfParam() {
98         return sfParam;
99     }
100
101     public void setSfParam(Map sfParam) {
102         this.sfParam = sfParam;
103     }
104
105     public String getUrl() {
106         return url;
107     }
108
109     public void setUrl(String url) {
110         this.url = url;
111     }
112 }