Merge "creating a default subnet"
[controller.git] / opendaylight / northbound / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / northbound / NeutronPortRequest.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.NeutronPort;
19
20 @XmlRootElement
21 @XmlAccessorType(XmlAccessType.NONE)
22 public class NeutronPortRequest {
23     // See OpenStack Network API v2.0 Reference for description of
24     // annotated attributes
25
26     @XmlElement(name="port")
27     NeutronPort singletonPort;
28
29     @XmlElement(name="ports")
30     List<NeutronPort> bulkRequest;
31
32     NeutronPortRequest() {
33     }
34
35     NeutronPortRequest(List<NeutronPort> bulk) {
36         bulkRequest = bulk;
37         singletonPort = null;
38     }
39
40     NeutronPortRequest(NeutronPort port) {
41         singletonPort = port;
42     }
43
44     public NeutronPort getSingleton() {
45         return singletonPort;
46     }
47
48     public boolean isSingleton() {
49         return (singletonPort != null);
50     }
51
52     public List<NeutronPort> getBulk() {
53         return bulkRequest;
54     }
55 }