Fix License Header of vfc-driver
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / main / java / org / openo / 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 package org.openo.sfc.entity;
17
18 public class FlowClassfierReq4N {
19     private String url;
20     private String sdnControllerId;
21     private String name;
22     private String description;
23     private int dscp;
24     private String ip_proto;
25     private String source_port_range;
26     private String dest_port_range;
27     private String source_ip_range;
28     private String dest_ip_range;
29
30     public String getUrl() {
31         return url;
32     }
33
34     public void setUrl(String url) {
35         this.url = url;
36     }
37
38     public String getSdnControllerId() {
39         return sdnControllerId;
40     }
41
42     public void setSdnControllerId(String sdnControllerId) {
43         this.sdnControllerId = sdnControllerId;
44     }
45
46     public String getName() {
47         return name;
48     }
49
50     public void setName(String name) {
51         this.name = name;
52     }
53
54     public String getDescription() {
55         return description;
56     }
57
58     public void setDescription(String description) {
59         this.description = description;
60     }
61
62     public int getDscp() {
63         return dscp;
64     }
65
66     public void setDscp(int dscp) {
67         this.dscp = dscp;
68     }
69
70     public String getIp_proto() {
71         return ip_proto;
72     }
73
74     public void setIp_proto(String ip_proto) {
75         this.ip_proto = ip_proto;
76     }
77
78     public String getSource_port_range() {
79         return source_port_range;
80     }
81
82     public void setSource_port_range(String source_port_range) {
83         this.source_port_range = source_port_range;
84     }
85
86     public String getDest_port_range() {
87         return dest_port_range;
88     }
89
90     public void setDest_port_range(String dest_port_range) {
91         this.dest_port_range = dest_port_range;
92     }
93
94     public String getSource_ip_range() {
95         return source_ip_range;
96     }
97
98     public void setSource_ip_range(String source_ip_range) {
99         this.source_ip_range = source_ip_range;
100     }
101
102     public String getDest_ip_range() {
103         return dest_ip_range;
104     }
105
106     public void setDest_ip_range(String dest_ip_range) {
107         this.dest_ip_range = dest_ip_range;
108     }
109 }