![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostInternetScsiHbaIPv6Properties Maven / Gradle / Ivy
package com.vmware.vim25;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostInternetScsiHbaIPv6Properties complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostInternetScsiHbaIPv6Properties">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="iscsiIpv6Address" type="{urn:vim25}HostInternetScsiHbaIscsiIpv6Address" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ipv6DhcpConfigurationEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="ipv6LinkLocalAutoConfigurationEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="ipv6RouterAdvertisementConfigurationEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="ipv6DefaultGateway" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostInternetScsiHbaIPv6Properties", propOrder = {
"iscsiIpv6Address",
"ipv6DhcpConfigurationEnabled",
"ipv6LinkLocalAutoConfigurationEnabled",
"ipv6RouterAdvertisementConfigurationEnabled",
"ipv6DefaultGateway"
})
public class HostInternetScsiHbaIPv6Properties
extends DynamicData
{
protected List iscsiIpv6Address;
protected Boolean ipv6DhcpConfigurationEnabled;
protected Boolean ipv6LinkLocalAutoConfigurationEnabled;
protected Boolean ipv6RouterAdvertisementConfigurationEnabled;
protected String ipv6DefaultGateway;
/**
* Gets the value of the iscsiIpv6Address property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the iscsiIpv6Address property.
*
*
* For example, to add a new item, do as follows:
*
* getIscsiIpv6Address().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostInternetScsiHbaIscsiIpv6Address }
*
*
*/
public List getIscsiIpv6Address() {
if (iscsiIpv6Address == null) {
iscsiIpv6Address = new ArrayList();
}
return this.iscsiIpv6Address;
}
/**
* Gets the value of the ipv6DhcpConfigurationEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIpv6DhcpConfigurationEnabled() {
return ipv6DhcpConfigurationEnabled;
}
/**
* Sets the value of the ipv6DhcpConfigurationEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIpv6DhcpConfigurationEnabled(Boolean value) {
this.ipv6DhcpConfigurationEnabled = value;
}
/**
* Gets the value of the ipv6LinkLocalAutoConfigurationEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIpv6LinkLocalAutoConfigurationEnabled() {
return ipv6LinkLocalAutoConfigurationEnabled;
}
/**
* Sets the value of the ipv6LinkLocalAutoConfigurationEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIpv6LinkLocalAutoConfigurationEnabled(Boolean value) {
this.ipv6LinkLocalAutoConfigurationEnabled = value;
}
/**
* Gets the value of the ipv6RouterAdvertisementConfigurationEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIpv6RouterAdvertisementConfigurationEnabled() {
return ipv6RouterAdvertisementConfigurationEnabled;
}
/**
* Sets the value of the ipv6RouterAdvertisementConfigurationEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIpv6RouterAdvertisementConfigurationEnabled(Boolean value) {
this.ipv6RouterAdvertisementConfigurationEnabled = value;
}
/**
* Gets the value of the ipv6DefaultGateway property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIpv6DefaultGateway() {
return ipv6DefaultGateway;
}
/**
* Sets the value of the ipv6DefaultGateway property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIpv6DefaultGateway(String value) {
this.ipv6DefaultGateway = value;
}
}