checkstyle: TypeName
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / NeutronRouterNetworkReference.java
1 /*
2  * Copyright (c) 2013, 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.spi;
10
11 import java.io.Serializable;
12 import java.util.List;
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 @XmlRootElement
19 @XmlAccessorType(XmlAccessType.NONE)
20 public final class NeutronRouterNetworkReference implements Serializable {
21     private static final long serialVersionUID = 1L;
22
23     // See OpenStack Network API v2.0 Reference for description of
24     // annotated attributes
25
26     @XmlElement(name = "network_id")
27     String networkID;
28
29     @XmlElement(name = "enable_snat")
30     Boolean enableSNAT;
31
32     @XmlElement(name = "external_fixed_ips")
33     List<NeutronIPs> externalFixedIPs;
34
35     public NeutronRouterNetworkReference() {
36     }
37
38     public String getNetworkID() {
39         return networkID;
40     }
41
42     public void setNetworkID(String networkID) {
43         this.networkID = networkID;
44     }
45
46     public Boolean getEnableSNAT() {
47         return enableSNAT;
48     }
49
50     public void setEnableSNAT(Boolean enableSNAT) {
51         this.enableSNAT = enableSNAT;
52     }
53
54     public List<NeutronIPs> getExternalFixedIPs() {
55         return externalFixedIPs;
56     }
57
58     public void setExternalFixedIPs(List<NeutronIPs> externalFixedIPs) {
59         this.externalFixedIPs = externalFixedIPs;
60     }
61
62     @Override
63     public String toString() {
64         return "NeutronRouterNetworkReference [networkID=" + networkID + " enableSNAT=" + enableSNAT
65                 + " externalFixedIPs=" + externalFixedIPs + "]";
66     }
67
68 }