Fix FindBugs violations
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / NeutronSFCPortPairGroup.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.spi;
9
10 import java.util.List;
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlRootElement;
15
16 @XmlRootElement
17 @XmlAccessorType(XmlAccessType.NONE)
18 public final class NeutronSFCPortPairGroup extends NeutronBaseAttributes<NeutronSFCPortPairGroup> {
19     private static final long serialVersionUID = 1L;
20
21     // See OpenStack Networking SFC (networking-sfc) Port Pair Group API v1.0
22     // Reference for description of annotated attributes
23
24     @XmlElement(name = "port_pairs")
25     List<String> portPairs;
26
27     public NeutronSFCPortPairGroup() {
28     }
29
30     public List<String> getPortPairs() {
31         return portPairs;
32     }
33
34     public void setPortPairs(List<String> portPairs) {
35         this.portPairs = portPairs;
36     }
37
38     @Override
39     protected boolean extractField(String field, NeutronSFCPortPairGroup ans) {
40         switch (field) {
41             case "port_pairs":
42                 ans.setPortPairs(this.getPortPairs());
43                 break;
44             default:
45                 return super.extractField(field, ans);
46         }
47         return true;
48     }
49
50     @Override
51     public String toString() {
52         return "NeutronSFCPortPairGroup[" + "tenantID='" + tenantID + '\'' + ", name='" + name + '\'' + ", portPairs="
53                 + portPairs + ']';
54     }
55 }