![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VmConfigFileQueryFlags Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VmConfigFileQueryFlags complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmConfigFileQueryFlags">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="configVersion" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="encryption" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmConfigFileQueryFlags", propOrder = {
"configVersion",
"encryption"
})
public class VmConfigFileQueryFlags
extends DynamicData
{
protected boolean configVersion;
protected Boolean encryption;
/**
* Gets the value of the configVersion property.
*
*/
public boolean isConfigVersion() {
return configVersion;
}
/**
* Sets the value of the configVersion property.
*
*/
public void setConfigVersion(boolean value) {
this.configVersion = value;
}
/**
* Gets the value of the encryption property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEncryption() {
return encryption;
}
/**
* Sets the value of the encryption property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEncryption(Boolean value) {
this.encryption = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy