com.vmware.vim25.ProfileExecuteResult 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.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ProfileExecuteResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ProfileExecuteResult">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="configSpec" type="{urn:vim25}HostConfigSpec" minOccurs="0"/>
* <element name="inapplicablePath" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="requireInput" type="{urn:vim25}ProfileDeferredPolicyOptionParameter" maxOccurs="unbounded" minOccurs="0"/>
* <element name="error" type="{urn:vim25}ProfileExecuteError" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProfileExecuteResult", propOrder = {
"status",
"configSpec",
"inapplicablePath",
"requireInput",
"error"
})
@XmlSeeAlso({
ApplyHostProfileConfigurationSpec.class
})
public class ProfileExecuteResult
extends DynamicData
{
@XmlElement(required = true)
protected String status;
protected HostConfigSpec configSpec;
protected List inapplicablePath;
protected List requireInput;
protected List error;
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatus(String value) {
this.status = value;
}
/**
* Gets the value of the configSpec property.
*
* @return
* possible object is
* {@link HostConfigSpec }
*
*/
public HostConfigSpec getConfigSpec() {
return configSpec;
}
/**
* Sets the value of the configSpec property.
*
* @param value
* allowed object is
* {@link HostConfigSpec }
*
*/
public void setConfigSpec(HostConfigSpec value) {
this.configSpec = value;
}
/**
* Gets the value of the inapplicablePath 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 inapplicablePath property.
*
*
* For example, to add a new item, do as follows:
*
* getInapplicablePath().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getInapplicablePath() {
if (inapplicablePath == null) {
inapplicablePath = new ArrayList();
}
return this.inapplicablePath;
}
/**
* Gets the value of the requireInput 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 requireInput property.
*
*
* For example, to add a new item, do as follows:
*
* getRequireInput().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ProfileDeferredPolicyOptionParameter }
*
*
*/
public List getRequireInput() {
if (requireInput == null) {
requireInput = new ArrayList();
}
return this.requireInput;
}
/**
* Gets the value of the error 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 error property.
*
*
* For example, to add a new item, do as follows:
*
* getError().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ProfileExecuteError }
*
*
*/
public List getError() {
if (error == null) {
error = new ArrayList();
}
return this.error;
}
}