587fd06d8a18f2bb52c7276cf6ae81f4d9f71aa8
[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 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.NeutronSFCPortPair;
16
17 @XmlRootElement
18 @XmlAccessorType(XmlAccessType.NONE)
19 public final class NeutronSFCPortPairRequest implements INeutronRequest<NeutronSFCPortPair> {
20     // See OpenStack Networking SFC (networking-sfc) Port Pair API v1.0 Reference
21     // for description of annotated attributes
22
23     @XmlElement(name = "portpair")
24     NeutronSFCPortPair singleton;
25
26     @XmlElement(name = "portpairs")
27     List<NeutronSFCPortPair> bulkRequest;
28
29     NeutronSFCPortPairRequest() {
30     }
31
32     NeutronSFCPortPairRequest(List<NeutronSFCPortPair> bulkRequest) {
33         this.bulkRequest = bulkRequest;
34     }
35
36     NeutronSFCPortPairRequest(NeutronSFCPortPair sfcPortPair) {
37         this.singleton = sfcPortPair;
38     }
39 }