Fix FindBugs violations
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronSFCPortPairGroupRequest.java
1 /*
2  * Copyright (c) 2016 Brocade Communications Systems, 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 package org.opendaylight.neutron.northbound.api;
9
10 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
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.NeutronSFCPortPairGroup;
17
18 @XmlRootElement
19 @XmlAccessorType(XmlAccessType.NONE)
20 @SuppressFBWarnings("URF_UNREAD_FIELD")
21 public final class NeutronSFCPortPairGroupRequest implements INeutronRequest<NeutronSFCPortPairGroup> {
22     // See OpenStack Networking SFC (networking-sfc) Port Pair Group API v1.0 Reference
23     // for description of annotated attributes
24
25     @XmlElement(name = "portpairgroup")
26     NeutronSFCPortPairGroup singleton;
27
28     @XmlElement(name = "portpairgroups")
29     List<NeutronSFCPortPairGroup> bulkRequest;
30
31     NeutronSFCPortPairGroupRequest() {
32     }
33
34     NeutronSFCPortPairGroupRequest(List<NeutronSFCPortPairGroup> bulkRequest) {
35         this.bulkRequest = bulkRequest;
36     }
37
38     NeutronSFCPortPairGroupRequest(NeutronSFCPortPairGroup sfcPortPair) {
39         this.singleton = sfcPortPair;
40     }
41 }