com.vmware.vim25.NetDhcpConfigInfo Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for NetDhcpConfigInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NetDhcpConfigInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="ipv6" type="{urn:vim25}NetDhcpConfigInfoDhcpOptions" minOccurs="0"/>
* <element name="ipv4" type="{urn:vim25}NetDhcpConfigInfoDhcpOptions" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NetDhcpConfigInfo", propOrder = {
"ipv6",
"ipv4"
})
public class NetDhcpConfigInfo
extends DynamicData
{
protected NetDhcpConfigInfoDhcpOptions ipv6;
protected NetDhcpConfigInfoDhcpOptions ipv4;
/**
* Gets the value of the ipv6 property.
*
* @return
* possible object is
* {@link NetDhcpConfigInfoDhcpOptions }
*
*/
public NetDhcpConfigInfoDhcpOptions getIpv6() {
return ipv6;
}
/**
* Sets the value of the ipv6 property.
*
* @param value
* allowed object is
* {@link NetDhcpConfigInfoDhcpOptions }
*
*/
public void setIpv6(NetDhcpConfigInfoDhcpOptions value) {
this.ipv6 = value;
}
/**
* Gets the value of the ipv4 property.
*
* @return
* possible object is
* {@link NetDhcpConfigInfoDhcpOptions }
*
*/
public NetDhcpConfigInfoDhcpOptions getIpv4() {
return ipv4;
}
/**
* Sets the value of the ipv4 property.
*
* @param value
* allowed object is
* {@link NetDhcpConfigInfoDhcpOptions }
*
*/
public void setIpv4(NetDhcpConfigInfoDhcpOptions value) {
this.ipv4 = value;
}
}