Merge "remove redundant methods for compatibility"
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronL2gatewayConnectionRequest.java
1 /*
2  * Copyright (c) 2015 Hewlett-Packard Development Company, L.P. 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.NeutronL2gatewayConnection;
19
20 @XmlRootElement
21 @XmlAccessorType(XmlAccessType.NONE)
22
23 public class NeutronL2gatewayConnectionRequest implements INeutronRequest<NeutronL2gatewayConnection> {
24     @XmlElement(name = "l2gateway_connection")
25     NeutronL2gatewayConnection singletonL2gatewayConnection;
26
27     @XmlElement(name = "l2gateway_connections")
28     List<NeutronL2gatewayConnection> bulkRequest;
29
30     NeutronL2gatewayConnectionRequest() {
31     }
32
33     NeutronL2gatewayConnectionRequest(NeutronL2gatewayConnection l2gatewayConnection) {
34         this.singletonL2gatewayConnection = l2gatewayConnection;
35     }
36
37     NeutronL2gatewayConnectionRequest(List<NeutronL2gatewayConnection> bulk) {
38         bulkRequest = bulk;
39         singletonL2gatewayConnection = null;
40     }
41
42     @Override
43     public boolean isSingleton() {
44         return (singletonL2gatewayConnection != null);
45     }
46
47     @Override
48     public NeutronL2gatewayConnection getSingleton() {
49         return singletonL2gatewayConnection;
50     }
51
52     @Override
53     public List<NeutronL2gatewayConnection> getBulk() {
54         return bulkRequest;
55     }
56
57 }