
com.vmware.vim.HostInternetScsiHbaAuthenticationCapabilities 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 HostInternetScsiHbaAuthenticationCapabilities complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostInternetScsiHbaAuthenticationCapabilities">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="chapAuthSettable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="krb5AuthSettable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="srpAuthSettable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="spkmAuthSettable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostInternetScsiHbaAuthenticationCapabilities", propOrder = {
"chapAuthSettable",
"krb5AuthSettable",
"srpAuthSettable",
"spkmAuthSettable"
})
public class HostInternetScsiHbaAuthenticationCapabilities
extends DynamicData
{
protected boolean chapAuthSettable;
protected boolean krb5AuthSettable;
protected boolean srpAuthSettable;
protected boolean spkmAuthSettable;
/**
* Gets the value of the chapAuthSettable property.
*
*/
public boolean isChapAuthSettable() {
return chapAuthSettable;
}
/**
* Sets the value of the chapAuthSettable property.
*
*/
public void setChapAuthSettable(boolean value) {
this.chapAuthSettable = value;
}
/**
* Gets the value of the krb5AuthSettable property.
*
*/
public boolean isKrb5AuthSettable() {
return krb5AuthSettable;
}
/**
* Sets the value of the krb5AuthSettable property.
*
*/
public void setKrb5AuthSettable(boolean value) {
this.krb5AuthSettable = value;
}
/**
* Gets the value of the srpAuthSettable property.
*
*/
public boolean isSrpAuthSettable() {
return srpAuthSettable;
}
/**
* Sets the value of the srpAuthSettable property.
*
*/
public void setSrpAuthSettable(boolean value) {
this.srpAuthSettable = value;
}
/**
* Gets the value of the spkmAuthSettable property.
*
*/
public boolean isSpkmAuthSettable() {
return spkmAuthSettable;
}
/**
* Sets the value of the spkmAuthSettable property.
*
*/
public void setSpkmAuthSettable(boolean value) {
this.spkmAuthSettable = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy