![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.ClusterPowerOnVmResult 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 ClusterPowerOnVmResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterPowerOnVmResult">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="attempted" type="{urn:vim25}ClusterAttemptedVmInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="notAttempted" type="{urn:vim25}ClusterNotAttemptedVmInfo" maxOccurs="unbounded" minOccurs="0"/>
* <element name="recommendations" type="{urn:vim25}ClusterRecommendation" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterPowerOnVmResult", propOrder = {
"attempted",
"notAttempted",
"recommendations"
})
public class ClusterPowerOnVmResult
extends DynamicData
{
protected List attempted;
protected List notAttempted;
protected List recommendations;
/**
* Gets the value of the attempted 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 attempted property.
*
*
* For example, to add a new item, do as follows:
*
* getAttempted().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterAttemptedVmInfo }
*
*
*/
public List getAttempted() {
if (attempted == null) {
attempted = new ArrayList();
}
return this.attempted;
}
/**
* Gets the value of the notAttempted 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 notAttempted property.
*
*
* For example, to add a new item, do as follows:
*
* getNotAttempted().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterNotAttemptedVmInfo }
*
*
*/
public List getNotAttempted() {
if (notAttempted == null) {
notAttempted = new ArrayList();
}
return this.notAttempted;
}
/**
* Gets the value of the recommendations 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 recommendations property.
*
*
* For example, to add a new item, do as follows:
*
* getRecommendations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ClusterRecommendation }
*
*
*/
public List getRecommendations() {
if (recommendations == null) {
recommendations = new ArrayList();
}
return this.recommendations;
}
}