com.vmware.vim25.AnswerFileCreateSpec Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for AnswerFileCreateSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AnswerFileCreateSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="validating" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AnswerFileCreateSpec", propOrder = {
"validating"
})
@XmlSeeAlso({
AnswerFileOptionsCreateSpec.class,
AnswerFileSerializedCreateSpec.class
})
public class AnswerFileCreateSpec
extends DynamicData
{
protected Boolean validating;
/**
* Gets the value of the validating property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isValidating() {
return validating;
}
/**
* Sets the value of the validating property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setValidating(Boolean value) {
this.validating = value;
}
}