
com.vmware.vim.VirtualMachineFlagInfo 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 VirtualMachineFlagInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineFlagInfo">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="disableAcceleration" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="enableLogging" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="useToe" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="runWithDebugInfo" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="htSharing" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineFlagInfo", propOrder = {
"disableAcceleration",
"enableLogging",
"useToe",
"runWithDebugInfo",
"htSharing"
})
public class VirtualMachineFlagInfo
extends DynamicData
{
protected Boolean disableAcceleration;
protected Boolean enableLogging;
protected Boolean useToe;
protected Boolean runWithDebugInfo;
protected String htSharing;
/**
* Gets the value of the disableAcceleration property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDisableAcceleration() {
return disableAcceleration;
}
/**
* Sets the value of the disableAcceleration property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDisableAcceleration(Boolean value) {
this.disableAcceleration = value;
}
/**
* Gets the value of the enableLogging property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEnableLogging() {
return enableLogging;
}
/**
* Sets the value of the enableLogging property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEnableLogging(Boolean value) {
this.enableLogging = value;
}
/**
* Gets the value of the useToe property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUseToe() {
return useToe;
}
/**
* Sets the value of the useToe property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUseToe(Boolean value) {
this.useToe = value;
}
/**
* Gets the value of the runWithDebugInfo property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRunWithDebugInfo() {
return runWithDebugInfo;
}
/**
* Sets the value of the runWithDebugInfo property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setRunWithDebugInfo(Boolean value) {
this.runWithDebugInfo = value;
}
/**
* Gets the value of the htSharing property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHtSharing() {
return htSharing;
}
/**
* Sets the value of the htSharing property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHtSharing(String value) {
this.htSharing = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy