All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.ClusterPowerOnVmResult Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy