update committer list
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / main / java / org / onap / sfc / entity / PortChainReq.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 com.google.gson.annotations.SerializedName;
19
20 import java.util.ArrayList;
21 import java.util.List;
22 import java.util.Map;
23
24 public class PortChainReq {
25     @SerializedName("port-pair-groups")
26     private List<String> portPairGroups;
27     @SerializedName("flow-classifiers")
28     private List<String> flowClassifiers;
29     private String uuid;
30     @SerializedName("chain-parameters")
31     private List<ChainParameter> chainParams;
32
33
34     public List<ChainParameter> getChainParams() {
35         return chainParams;
36     }
37
38     public void setChainParams(List<ChainParameter> chainParams) {
39         this.chainParams = chainParams;
40     }
41
42
43     public String getUuid() {
44         return uuid;
45     }
46
47     public void setUuid(String uuid) {
48         this.uuid = uuid;
49     }
50
51     public List<String> getPortPairGroups() {
52         return portPairGroups;
53     }
54
55     public void setPortPairGroups(List<String> portPairGroups) {
56         this.portPairGroups = portPairGroups;
57     }
58
59     public List<String> getFlowClassifiers() {
60         return flowClassifiers;
61     }
62
63     public void setFlowClassifiers(List<String> flowClassifiers) {
64         this.flowClassifiers = flowClassifiers;
65     }
66 }