Fix JDK8 javadoc compatibility
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronVPNIPSECSiteConnectionRequest.java
1 /*
2  * Copyright IBM Corporation, 2015.  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.NeutronVPNIPSECSiteConnection;
17
18 @XmlRootElement
19 @XmlAccessorType(XmlAccessType.NONE)
20 public class NeutronVPNIPSECSiteConnectionRequest implements INeutronRequest<NeutronVPNIPSECSiteConnection> {
21
22     @XmlElement(name="ipsec_site_connection")
23     NeutronVPNIPSECSiteConnection singletonVPNIPSECSiteConnection;
24
25     @XmlElement(name="ipsec_site_connections")
26     List<NeutronVPNIPSECSiteConnection> bulkVPNIPSECSiteConnections;
27
28     NeutronVPNIPSECSiteConnectionRequest() {
29     }
30
31     NeutronVPNIPSECSiteConnectionRequest(NeutronVPNIPSECSiteConnection connection) {
32         singletonVPNIPSECSiteConnection = connection;
33        bulkVPNIPSECSiteConnections = null;
34     }
35
36     NeutronVPNIPSECSiteConnectionRequest(List<NeutronVPNIPSECSiteConnection> connections) {
37         singletonVPNIPSECSiteConnection = null;
38         bulkVPNIPSECSiteConnections = connections;
39     }
40
41     @Override
42     public NeutronVPNIPSECSiteConnection getSingleton() {
43         return singletonVPNIPSECSiteConnection;
44     }
45
46     @Override
47     public List<NeutronVPNIPSECSiteConnection> getBulk() {
48         return bulkVPNIPSECSiteConnections;
49     }
50
51     @Override
52     public boolean isSingleton() {
53         return (singletonVPNIPSECSiteConnection != null);
54     }
55 }