844e4458020225c26c33dd4834601103d059edf6
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronSFCPortPairGroupRequest.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.NeutronSFCPortPairGroup;
16
17 @XmlRootElement
18 @XmlAccessorType(XmlAccessType.NONE)
19 public final class NeutronSFCPortPairGroupRequest implements INeutronRequest<NeutronSFCPortPairGroup> {
20     // See OpenStack Networking SFC (networking-sfc) Port Pair Group API v1.0 Reference
21     // for description of annotated attributes
22
23     @XmlElement(name = "portpairgroup")
24     NeutronSFCPortPairGroup singleton;
25
26     @XmlElement(name = "portpairgroups")
27     List<NeutronSFCPortPairGroup> bulkRequest;
28
29     NeutronSFCPortPairGroupRequest() {
30     }
31
32     NeutronSFCPortPairGroupRequest(List<NeutronSFCPortPairGroup> bulkRequest) {
33         this.bulkRequest = bulkRequest;
34     }
35
36     NeutronSFCPortPairGroupRequest(NeutronSFCPortPairGroup sfcPortPair) {
37         this.singleton = sfcPortPair;
38     }
39 }