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