com.vmware.vim25.NetIpStackInfoDefaultRouter Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for NetIpStackInfoDefaultRouter complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NetIpStackInfoDefaultRouter">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="ipAddress" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="device" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="lifetime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="preference" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NetIpStackInfoDefaultRouter", propOrder = {
"ipAddress",
"device",
"lifetime",
"preference"
})
public class NetIpStackInfoDefaultRouter
extends DynamicData
{
@XmlElement(required = true)
protected String ipAddress;
@XmlElement(required = true)
protected String device;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lifetime;
@XmlElement(required = true)
protected String preference;
/**
* Gets the value of the ipAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIpAddress() {
return ipAddress;
}
/**
* Sets the value of the ipAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIpAddress(String value) {
this.ipAddress = value;
}
/**
* Gets the value of the device property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDevice() {
return device;
}
/**
* Sets the value of the device property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDevice(String value) {
this.device = value;
}
/**
* Gets the value of the lifetime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLifetime() {
return lifetime;
}
/**
* Sets the value of the lifetime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLifetime(XMLGregorianCalendar value) {
this.lifetime = value;
}
/**
* Gets the value of the preference property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPreference() {
return preference;
}
/**
* Sets the value of the preference property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPreference(String value) {
this.preference = value;
}
}