![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.pbm.PbmCapabilityConstraintInstance Maven / Gradle / Ivy
package com.vmware.pbm;
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.XmlType;
import com.vmware.vim25.DynamicData;
/**
* Java class for PbmCapabilityConstraintInstance complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PbmCapabilityConstraintInstance">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="propertyInstance" type="{urn:pbm}PbmCapabilityPropertyInstance" maxOccurs="unbounded"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PbmCapabilityConstraintInstance", propOrder = {
"propertyInstance"
})
public class PbmCapabilityConstraintInstance
extends DynamicData
{
@XmlElement(required = true)
protected List propertyInstance;
/**
* Gets the value of the propertyInstance 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 propertyInstance property.
*
*
* For example, to add a new item, do as follows:
*
* getPropertyInstance().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PbmCapabilityPropertyInstance }
*
*
*/
public List getPropertyInstance() {
if (propertyInstance == null) {
propertyInstance = new ArrayList();
}
return this.propertyInstance;
}
}