78132181cf2bf8c9c3c8ae3ffc08e4a11b5b7121
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronSFCPortPairRequest.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 org.opendaylight.neutron.spi.NeutronSFCPortPair;
11
12 import javax.xml.bind.annotation.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14 import javax.xml.bind.annotation.XmlElement;
15 import javax.xml.bind.annotation.XmlRootElement;
16 import java.util.List;
17
18 @XmlRootElement
19 @XmlAccessorType(XmlAccessType.NONE)
20
21 public class NeutronSFCPortPairRequest  implements INeutronRequest<NeutronSFCPortPair> {
22     // See OpenStack Networking SFC (networking-sfc) Port Pair API v1.0 Reference
23     // for description of annotated attributes
24
25     @XmlElement(name="portpair")
26     NeutronSFCPortPair singletonPortPair;
27
28     @XmlElement(name="portpairs")
29     List<NeutronSFCPortPair> bulkRequest;
30
31     NeutronSFCPortPairRequest() {
32     }
33
34     NeutronSFCPortPairRequest(List<NeutronSFCPortPair> bulkRequest) {
35         this.bulkRequest = bulkRequest;
36         this.singletonPortPair = null;
37     }
38
39     NeutronSFCPortPairRequest(NeutronSFCPortPair sfcPortPair) {
40         this.singletonPortPair = sfcPortPair;
41     }
42
43     @Override
44     public NeutronSFCPortPair getSingleton() {
45         return this.singletonPortPair;
46     }
47
48     @Override
49     public boolean isSingleton() {
50         return singletonPortPair != null;
51     }
52
53     @Override
54     public List<NeutronSFCPortPair> getBulk() {
55         return this.bulkRequest;
56     }
57 }