Initial push of Neutron interface
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / NeutronSubnet_HostRoute.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 public class NeutronSubnet_HostRoute {\r
19     // See OpenStack Network API v2.0 Reference for description of\r
20     // annotated attributes\r
21 \r
22     @XmlElement(name="destination")\r
23     String destination;\r
24 \r
25     @XmlElement(name="nexthop")\r
26     String nextHop;\r
27 \r
28     public NeutronSubnet_HostRoute() { }\r
29 }\r