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