e026ce9b8de73140063c33d293d62b4e15c8eadb
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronSFCFlowClassifierRequest.java
1 /*
2  * Copyright (c) 2016 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.neutron.northbound.api;
9
10 import java.util.List;
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlRootElement;
15 import org.opendaylight.neutron.spi.NeutronSFCFlowClassifier;
16
17 @XmlRootElement
18 @XmlAccessorType(XmlAccessType.NONE)
19 public final class NeutronSFCFlowClassifierRequest implements INeutronRequest<NeutronSFCFlowClassifier> {
20     // See OpenStack Networking SFC (networking-sfc) API v1.0 Reference for description of
21     // annotated attributes
22
23     @XmlElement(name = "flowclassifier")
24     NeutronSFCFlowClassifier singleton;
25
26     @XmlElement(name = "flowclassifiers")
27     List<NeutronSFCFlowClassifier> bulkRequest;
28
29     NeutronSFCFlowClassifierRequest() {
30     }
31
32     NeutronSFCFlowClassifierRequest(List<NeutronSFCFlowClassifier> bulkRequest) {
33         this.bulkRequest = bulkRequest;
34     }
35
36     NeutronSFCFlowClassifierRequest(NeutronSFCFlowClassifier sfcFlowClassifier) {
37         this.singleton = sfcFlowClassifier;
38     }
39 }