Merge changes from topic 'northbound-refactor'
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronFloatingIPRequest.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
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.neutron.spi.NeutronFloatingIP;
19
20 @XmlRootElement
21 @XmlAccessorType(XmlAccessType.NONE)
22 public class NeutronFloatingIPRequest
23     implements INeutronRequest<NeutronFloatingIP> {
24     // See OpenStack Network API v2.0 Reference for description of
25     // annotated attributes
26
27     @XmlElement(name="floatingip")
28     NeutronFloatingIP singletonFloatingIP;
29
30     @XmlElement(name="floatingips")
31     List<NeutronFloatingIP> bulkRequest;
32
33     NeutronFloatingIPRequest() {
34     }
35
36     NeutronFloatingIPRequest(List<NeutronFloatingIP> bulk) {
37         bulkRequest = bulk;
38         singletonFloatingIP = null;
39     }
40
41     NeutronFloatingIPRequest(NeutronFloatingIP singleton) {
42         bulkRequest = null;
43         singletonFloatingIP = singleton;
44     }
45
46     @Override
47     public List<NeutronFloatingIP> getBulk() {
48         return bulkRequest;
49     }
50
51     @Override
52     public NeutronFloatingIP getSingleton() {
53         return singletonFloatingIP;
54     }
55
56     @Override
57     public boolean isSingleton() {
58         return (singletonFloatingIP != null);
59     }
60 }