Merge "Remove unused spring dependency and wrong version in web pom"
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / NeutronRouter_NetworkReference.java
1 /*\r
2  * Copyright IBM Corporation, 2013.  All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 \r
9 package org.opendaylight.controller.networkconfig.neutron;\r
10 \r
11 import javax.xml.bind.annotation.XmlAccessType;\r
12 import javax.xml.bind.annotation.XmlAccessorType;\r
13 import javax.xml.bind.annotation.XmlElement;\r
14 import javax.xml.bind.annotation.XmlRootElement;\r
15 \r
16 @XmlRootElement\r
17 @XmlAccessorType(XmlAccessType.NONE)\r
18 \r
19 public class NeutronRouter_NetworkReference {\r
20     // See OpenStack Network API v2.0 Reference for description of\r
21     // annotated attributes\r
22 \r
23     @XmlElement(name="network_id")\r
24     String networkID;\r
25 \r
26     public NeutronRouter_NetworkReference() {\r
27     }\r
28 \r
29     public String getNetworkID() {\r
30         return networkID;\r
31     }\r
32 \r
33     public void setNetworkID(String networkID) {\r
34         this.networkID = networkID;\r
35     }\r
36 }\r