![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.Capability 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 Capability complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Capability">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="provisioningSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="multiHostSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="userShellAccessSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="supportedEVCMode" type="{urn:vim25}EVCMode" maxOccurs="unbounded" minOccurs="0"/>
* <element name="networkBackupAndRestoreSupported" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Capability", propOrder = {
"provisioningSupported",
"multiHostSupported",
"userShellAccessSupported",
"supportedEVCMode",
"networkBackupAndRestoreSupported"
})
public class Capability
extends DynamicData
{
protected boolean provisioningSupported;
protected boolean multiHostSupported;
protected boolean userShellAccessSupported;
protected List supportedEVCMode;
protected Boolean networkBackupAndRestoreSupported;
/**
* Gets the value of the provisioningSupported property.
*
*/
public boolean isProvisioningSupported() {
return provisioningSupported;
}
/**
* Sets the value of the provisioningSupported property.
*
*/
public void setProvisioningSupported(boolean value) {
this.provisioningSupported = value;
}
/**
* Gets the value of the multiHostSupported property.
*
*/
public boolean isMultiHostSupported() {
return multiHostSupported;
}
/**
* Sets the value of the multiHostSupported property.
*
*/
public void setMultiHostSupported(boolean value) {
this.multiHostSupported = value;
}
/**
* Gets the value of the userShellAccessSupported property.
*
*/
public boolean isUserShellAccessSupported() {
return userShellAccessSupported;
}
/**
* Sets the value of the userShellAccessSupported property.
*
*/
public void setUserShellAccessSupported(boolean value) {
this.userShellAccessSupported = value;
}
/**
* Gets the value of the supportedEVCMode 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 supportedEVCMode property.
*
*
* For example, to add a new item, do as follows:
*
* getSupportedEVCMode().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link EVCMode }
*
*
*/
public List getSupportedEVCMode() {
if (supportedEVCMode == null) {
supportedEVCMode = new ArrayList();
}
return this.supportedEVCMode;
}
/**
* Gets the value of the networkBackupAndRestoreSupported property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isNetworkBackupAndRestoreSupported() {
return networkBackupAndRestoreSupported;
}
/**
* Sets the value of the networkBackupAndRestoreSupported property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setNetworkBackupAndRestoreSupported(Boolean value) {
this.networkBackupAndRestoreSupported = value;
}
}