Fix FindBugs violations
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronSFCFlowClassifierRequest.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.NeutronSFCFlowClassifier;
17
18 @XmlRootElement
19 @XmlAccessorType(XmlAccessType.NONE)
20 @SuppressFBWarnings("URF_UNREAD_FIELD")
21 public final class NeutronSFCFlowClassifierRequest implements INeutronRequest<NeutronSFCFlowClassifier> {
22     // See OpenStack Networking SFC (networking-sfc) API v1.0 Reference for description of
23     // annotated attributes
24
25     @XmlElement(name = "flowclassifier")
26     NeutronSFCFlowClassifier singleton;
27
28     @XmlElement(name = "flowclassifiers")
29     List<NeutronSFCFlowClassifier> bulkRequest;
30
31     NeutronSFCFlowClassifierRequest() {
32     }
33
34     NeutronSFCFlowClassifierRequest(List<NeutronSFCFlowClassifier> bulkRequest) {
35         this.bulkRequest = bulkRequest;
36     }
37
38     NeutronSFCFlowClassifierRequest(NeutronSFCFlowClassifier sfcFlowClassifier) {
39         this.singleton = sfcFlowClassifier;
40     }
41 }