Convert neutron service base classes to unix line delimiters.
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / NeutronRouter_Interface.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 public class NeutronRouter_Interface {
19     // See OpenStack Network API v2.0 Reference for description of
20     // annotated attributes
21
22     @XmlElement (name="subnet_id")
23     String subnetUUID;
24
25     @XmlElement (name="port_id")
26     String portUUID;
27
28     @XmlElement (name="id")
29     String id;
30
31     @XmlElement (name="tenant_id")
32     String tenantID;
33
34     public NeutronRouter_Interface() {
35     }
36
37     public NeutronRouter_Interface(String subnetUUID, String portUUID) {
38         this.subnetUUID = subnetUUID;
39         this.portUUID = portUUID;
40     }
41
42     public String getSubnetUUID() {
43         return subnetUUID;
44     }
45
46     public void setSubnetUUID(String subnetUUID) {
47         this.subnetUUID = subnetUUID;
48     }
49
50     public String getPortUUID() {
51         return portUUID;
52     }
53
54     public void setPortUUID(String portUUID) {
55         this.portUUID = portUUID;
56     }
57
58     public void setID(String id) {
59         this.id = id;
60     }
61
62     public void setTenantID(String tenantID) {
63         this.tenantID = tenantID;
64     }
65 }