Merge "Fixes Bug 4345"
[neutron.git] / neutron-spi / src / main / java / org / opendaylight / neutron / spi / NeutronRouter_Interface.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
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 class NeutronRouter_Interface extends NeutronObject implements Serializable, INeutronObject {
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 = "subnet_id")
27     String subnetUUID;
28
29     @XmlElement (name = "port_id")
30     String portUUID;
31
32     public NeutronRouter_Interface() {
33     }
34
35     public NeutronRouter_Interface(String subnetUUID, String portUUID) {
36         this.subnetUUID = subnetUUID;
37         this.portUUID = portUUID;
38     }
39
40     public String getSubnetUUID() {
41         return subnetUUID;
42     }
43
44     public void setSubnetUUID(String subnetUUID) {
45         this.subnetUUID = subnetUUID;
46     }
47
48     public String getPortUUID() {
49         return portUUID;
50     }
51
52     public void setPortUUID(String portUUID) {
53         this.portUUID = portUUID;
54     }
55
56     @Override
57     public String toString() {
58         return "NeutronRouterInterface [" +
59             "subnetUUID=" + subnetUUID +
60             ", portUUID=" + portUUID +
61             ", id=" + uuid +
62             ", tenantID=" + tenantID + "]";
63     }
64 }