update committer list
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / main / java / org / onap / sfc / entity / FlowClassfierReq4N.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;
18
19 public class FlowClassfierReq4N {
20     private String url;
21     private String sdnControllerId;
22     private String name;
23     private String description;
24     private int dscp;
25     private String ipProto;
26     private String sourcePortRange;
27     private String destPortRange;
28     private String sourceIpRange;
29     private String destIpRange;
30
31     public String getUrl() {
32         return url;
33     }
34
35     public void setUrl(String url) {
36         this.url = url;
37     }
38
39     public String getSdnControllerId() {
40         return sdnControllerId;
41     }
42
43     public void setSdnControllerId(String sdnControllerId) {
44         this.sdnControllerId = sdnControllerId;
45     }
46
47     public String getName() {
48         return name;
49     }
50
51     public void setName(String name) {
52         this.name = name;
53     }
54
55     public String getDescription() {
56         return description;
57     }
58
59     public void setDescription(String description) {
60         this.description = description;
61     }
62
63     public int getDscp() {
64         return dscp;
65     }
66
67     public void setDscp(int dscp) {
68         this.dscp = dscp;
69     }
70
71     public String getIpProto() {
72         return ipProto;
73     }
74
75     public void setIpProto(String ipProto) {
76         this.ipProto = ipProto;
77     }
78
79     public String getSourcePortRange() {
80         return sourcePortRange;
81     }
82
83     public void setSourcePortRange(String sourcePortRange) {
84         this.sourcePortRange = sourcePortRange;
85     }
86
87     public String getDestPortRange() {
88         return destPortRange;
89     }
90
91     public void setDestPortRange(String destPortRange) {
92         this.destPortRange = destPortRange;
93     }
94
95     public String getSourceIpRange() {
96         return sourceIpRange;
97     }
98
99     public void setSourceIpRange(String sourceIpRange) {
100         this.sourceIpRange = sourceIpRange;
101     }
102
103     public String getDestIpRange() {
104         return destIpRange;
105     }
106
107     public void setDestIpRange(String destIpRange) {
108         this.destIpRange = destIpRange;
109     }
110 }