ec77e90690e8e4f272ef5181c137b62d84ab2e65
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronNetworkRequest.java
1 /*
2  * Copyright (c) 2013, 2015 IBM Corporation 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
9 package org.opendaylight.neutron.northbound.api;
10
11 import java.util.List;
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 org.opendaylight.neutron.spi.NeutronNetwork;
17
18 @XmlRootElement
19 @XmlAccessorType(XmlAccessType.NONE)
20 public final class NeutronNetworkRequest implements INeutronRequest<NeutronNetwork> {
21     // See OpenStack Network API v2.0 Reference for description of
22     // annotated attributes
23
24     @XmlElement(name = "network")
25     NeutronNetwork singleton;
26
27     @XmlElement(name = "networks")
28     List<NeutronNetwork> bulkRequest;
29
30     @XmlElement(name = "networks_links")
31     List<NeutronPageLink> links;
32
33     NeutronNetworkRequest() {
34     }
35
36     NeutronNetworkRequest(List<NeutronNetwork> bulkRequest, List<NeutronPageLink> links) {
37         this.bulkRequest = bulkRequest;
38         this.links = links;
39     }
40
41     NeutronNetworkRequest(List<NeutronNetwork> bulk) {
42         bulkRequest = bulk;
43     }
44
45     NeutronNetworkRequest(NeutronNetwork net) {
46         singleton = net;
47     }
48 }