Merge "remove redundant methods for compatibility"
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronMeteringLabelRequest.java
1 /*
2  * Copyright (c) 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.NeutronMeteringLabel;
19
20
21 @XmlRootElement
22 @XmlAccessorType(XmlAccessType.NONE)
23
24 public class NeutronMeteringLabelRequest
25     implements INeutronRequest<NeutronMeteringLabel> {
26     // See OpenStack Network API v2.0 Reference for description of
27     // annotated attributes
28
29     @XmlElement(name="metering_label")
30     NeutronMeteringLabel singletonMeteringLabel;
31
32     @XmlElement(name="metering_labels")
33     List<NeutronMeteringLabel> bulkMeteringLabels;
34
35     NeutronMeteringLabelRequest() {
36     }
37
38     NeutronMeteringLabelRequest(NeutronMeteringLabel label) {
39         singletonMeteringLabel = label;
40         bulkMeteringLabels = null;
41     }
42
43     NeutronMeteringLabelRequest(List<NeutronMeteringLabel> bulk) {
44         bulkMeteringLabels = bulk;
45         singletonMeteringLabel = null;
46     }
47
48     @Override
49     public NeutronMeteringLabel getSingleton() {
50         return singletonMeteringLabel;
51     }
52
53     @Override
54     public boolean isSingleton() {
55         return (singletonMeteringLabel != null);
56     }
57
58     @Override
59     public List<NeutronMeteringLabel> getBulk() {
60         return bulkMeteringLabels;
61     }
62 }