Make neutron a simple osgi app
[controller.git] / opendaylight / networkconfiguration / neutron / src / main / java / org / opendaylight / controller / networkconfig / neutron / Neutron_IPs.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 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
19 @XmlRootElement
20 @XmlAccessorType(XmlAccessType.NONE)
21 public class Neutron_IPs implements Serializable {
22     private static final long serialVersionUID = 1L;
23
24     // See OpenStack Network API v2.0 Reference for description of
25     // annotated attributes
26
27     @XmlElement(name="ip_address")
28     String ipAddress;
29
30     @XmlElement(name="subnet_id")
31     String subnetUUID;
32
33     public Neutron_IPs() { }
34
35     public Neutron_IPs(String uuid) {
36         subnetUUID = uuid;
37     }
38
39     public String getIpAddress() {
40         return ipAddress;
41     }
42
43     public void setIpAddress(String ipAddress) {
44         this.ipAddress = ipAddress;
45     }
46
47     public String getSubnetUUID() {
48         return subnetUUID;
49     }
50
51     public void setSubnetUUID(String subnetUUID) {
52         this.subnetUUID = subnetUUID;
53     }
54
55     @Override
56     public String toString() {
57         return "Neutron_IPs{" +
58                "ipAddress='" + ipAddress + '\'' +
59                ", subnetUUID='" + subnetUUID + '\'' + "}";
60     }
61 }