Merge "Initial implementation of the ClusteredDataStore"
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / NeutronRouter_NetworkReference.java
1 /*
2  * Copyright IBM Corporation, 2013.  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.controller.networkconfig.neutron;
10
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
19 public class NeutronRouter_NetworkReference {
20     // See OpenStack Network API v2.0 Reference for description of
21     // annotated attributes
22
23     @XmlElement(name="network_id")
24     String networkID;
25
26     public NeutronRouter_NetworkReference() {
27     }
28
29     public String getNetworkID() {
30         return networkID;
31     }
32
33     public void setNetworkID(String networkID) {
34         this.networkID = networkID;
35     }
36 }