Checkstyle Import issues fix (SPI tests,Northbound API)
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronFirewallRequest.java
1 /*
2  * Copyright (c) 2014, 2015 Red Hat, Inc. 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 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.NeutronFirewall;
17
18
19 @XmlRootElement
20 @XmlAccessorType(XmlAccessType.NONE)
21
22 public class NeutronFirewallRequest
23     implements INeutronRequest<NeutronFirewall> {
24     /**
25      * See OpenStack Network API v2.0 Reference for description of
26      * http://docs.openstack.org/api/openstack-network/2.0/content/
27      */
28
29     @XmlElement(name="firewall")
30     NeutronFirewall singletonFirewall;
31
32     @XmlElement(name="firewalls")
33     List<NeutronFirewall> bulkRequest;
34
35     NeutronFirewallRequest() {
36     }
37
38     NeutronFirewallRequest(List<NeutronFirewall> bulk) {
39         bulkRequest = bulk;
40         singletonFirewall = null;
41     }
42
43     NeutronFirewallRequest(NeutronFirewall group) {
44         singletonFirewall = group;
45     }
46
47     @Override
48     public List<NeutronFirewall> getBulk() {
49         return bulkRequest;
50     }
51
52     @Override
53     public NeutronFirewall getSingleton() {
54         return singletonFirewall;
55     }
56
57     @Override
58     public boolean isSingleton() {
59         return (singletonFirewall != null);
60     }
61 }