Merge "Initial implementation of the ClusteredDataStore"
[controller.git] / opendaylight / northbound / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / northbound / NeutronRouterRequest.java
1 /*
2  * Copyright IBM Corporation, 2013.  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.controller.networkconfig.neutron.northbound;
10
11 import java.util.List;
12
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlElement;
16 import javax.xml.bind.annotation.XmlRootElement;
17
18 import org.opendaylight.controller.networkconfig.neutron.NeutronRouter;
19
20
21 @XmlRootElement
22 @XmlAccessorType(XmlAccessType.NONE)
23
24 public class NeutronRouterRequest {
25     // See OpenStack Network API v2.0 Reference for description of
26     // annotated attributes
27
28     @XmlElement(name="router")
29     NeutronRouter singletonRouter;
30
31     @XmlElement(name="routers")
32     List<NeutronRouter> bulkRequest;
33
34     NeutronRouterRequest() {
35     }
36
37     NeutronRouterRequest(List<NeutronRouter> bulk) {
38         bulkRequest = bulk;
39         singletonRouter = null;
40     }
41
42     NeutronRouterRequest(NeutronRouter router) {
43         singletonRouter = router;
44     }
45
46     public List<NeutronRouter> getBulk() {
47         return bulkRequest;
48     }
49
50     public NeutronRouter getSingleton() {
51         return singletonRouter;
52     }
53
54     public boolean isSingleton() {
55         return (singletonRouter != null);
56     }
57 }