com.vmware.vim25.HostProfileManagerConfigTaskList 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 HostProfileManagerConfigTaskList complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostProfileManagerConfigTaskList">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="configSpec" type="{urn:vim25}HostConfigSpec" minOccurs="0"/>
* <element name="taskDescription" type="{urn:vim25}LocalizableMessage" maxOccurs="unbounded" minOccurs="0"/>
* <element name="taskListRequirement" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostProfileManagerConfigTaskList", propOrder = {
"configSpec",
"taskDescription",
"taskListRequirement"
})
public class HostProfileManagerConfigTaskList
extends DynamicData
{
protected HostConfigSpec configSpec;
protected List taskDescription;
protected List taskListRequirement;
/**
* 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 taskDescription 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 taskDescription property.
*
*
* For example, to add a new item, do as follows:
*
* getTaskDescription().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link LocalizableMessage }
*
*
*/
public List getTaskDescription() {
if (taskDescription == null) {
taskDescription = new ArrayList();
}
return this.taskDescription;
}
/**
* Gets the value of the taskListRequirement 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 taskListRequirement property.
*
*
* For example, to add a new item, do as follows:
*
* getTaskListRequirement().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getTaskListRequirement() {
if (taskListRequirement == null) {
taskListRequirement = new ArrayList();
}
return this.taskListRequirement;
}
}