
com.vmware.vim.HostInternetScsiHbaIPCapabilities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostInternetScsiHbaIPCapabilities complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostInternetScsiHbaIPCapabilities">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="addressSettable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="ipConfigurationMethodSettable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="subnetMaskSettable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="defaultGatewaySettable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="primaryDnsServerAddressSettable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="alternateDnsServerAddressSettable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostInternetScsiHbaIPCapabilities", propOrder = {
"addressSettable",
"ipConfigurationMethodSettable",
"subnetMaskSettable",
"defaultGatewaySettable",
"primaryDnsServerAddressSettable",
"alternateDnsServerAddressSettable"
})
public class HostInternetScsiHbaIPCapabilities
extends DynamicData
{
protected boolean addressSettable;
protected boolean ipConfigurationMethodSettable;
protected boolean subnetMaskSettable;
protected boolean defaultGatewaySettable;
protected boolean primaryDnsServerAddressSettable;
protected boolean alternateDnsServerAddressSettable;
/**
* Gets the value of the addressSettable property.
*
*/
public boolean isAddressSettable() {
return addressSettable;
}
/**
* Sets the value of the addressSettable property.
*
*/
public void setAddressSettable(boolean value) {
this.addressSettable = value;
}
/**
* Gets the value of the ipConfigurationMethodSettable property.
*
*/
public boolean isIpConfigurationMethodSettable() {
return ipConfigurationMethodSettable;
}
/**
* Sets the value of the ipConfigurationMethodSettable property.
*
*/
public void setIpConfigurationMethodSettable(boolean value) {
this.ipConfigurationMethodSettable = value;
}
/**
* Gets the value of the subnetMaskSettable property.
*
*/
public boolean isSubnetMaskSettable() {
return subnetMaskSettable;
}
/**
* Sets the value of the subnetMaskSettable property.
*
*/
public void setSubnetMaskSettable(boolean value) {
this.subnetMaskSettable = value;
}
/**
* Gets the value of the defaultGatewaySettable property.
*
*/
public boolean isDefaultGatewaySettable() {
return defaultGatewaySettable;
}
/**
* Sets the value of the defaultGatewaySettable property.
*
*/
public void setDefaultGatewaySettable(boolean value) {
this.defaultGatewaySettable = value;
}
/**
* Gets the value of the primaryDnsServerAddressSettable property.
*
*/
public boolean isPrimaryDnsServerAddressSettable() {
return primaryDnsServerAddressSettable;
}
/**
* Sets the value of the primaryDnsServerAddressSettable property.
*
*/
public void setPrimaryDnsServerAddressSettable(boolean value) {
this.primaryDnsServerAddressSettable = value;
}
/**
* Gets the value of the alternateDnsServerAddressSettable property.
*
*/
public boolean isAlternateDnsServerAddressSettable() {
return alternateDnsServerAddressSettable;
}
/**
* Sets the value of the alternateDnsServerAddressSettable property.
*
*/
public void setAlternateDnsServerAddressSettable(boolean value) {
this.alternateDnsServerAddressSettable = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy