com.vmware.vim25.VVolVmConfigFileUpdateResult 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 VVolVmConfigFileUpdateResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VVolVmConfigFileUpdateResult">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="succeededVmConfigFile" type="{urn:vim25}KeyValue" maxOccurs="unbounded" minOccurs="0"/>
* <element name="failedVmConfigFile" type="{urn:vim25}VVolVmConfigFileUpdateResultFailedVmConfigFileInfo" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VVolVmConfigFileUpdateResult", propOrder = {
"succeededVmConfigFile",
"failedVmConfigFile"
})
public class VVolVmConfigFileUpdateResult
extends DynamicData
{
protected List succeededVmConfigFile;
protected List failedVmConfigFile;
/**
* Gets the value of the succeededVmConfigFile 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 succeededVmConfigFile property.
*
*
* For example, to add a new item, do as follows:
*
* getSucceededVmConfigFile().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link KeyValue }
*
*
*/
public List getSucceededVmConfigFile() {
if (succeededVmConfigFile == null) {
succeededVmConfigFile = new ArrayList();
}
return this.succeededVmConfigFile;
}
/**
* Gets the value of the failedVmConfigFile 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 failedVmConfigFile property.
*
*
* For example, to add a new item, do as follows:
*
* getFailedVmConfigFile().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VVolVmConfigFileUpdateResultFailedVmConfigFileInfo }
*
*
*/
public List getFailedVmConfigFile() {
if (failedVmConfigFile == null) {
failedVmConfigFile = new ArrayList();
}
return this.failedVmConfigFile;
}
}