public class ObjectContent extends DynamicData
Java class for ObjectContent complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ObjectContent">
<complexContent>
<extension base="{urn:vim25}DynamicData">
<sequence>
<element name="obj" type="{urn:vim25}ManagedObjectReference"/>
<element name="propSet" type="{urn:vim25}DynamicProperty" maxOccurs="unbounded" minOccurs="0"/>
<element name="missingSet" type="{urn:vim25}MissingProperty" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</extension>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<MissingProperty> |
missingSet |
protected ManagedObjectReference |
obj |
protected List<DynamicProperty> |
propSet |
| Constructor and Description |
|---|
ObjectContent() |
| Modifier and Type | Method and Description |
|---|---|
List<MissingProperty> |
getMissingSet()
Gets the value of the missingSet property.
|
ManagedObjectReference |
getObj()
Gets the value of the obj property.
|
List<DynamicProperty> |
getPropSet()
Gets the value of the propSet property.
|
void |
setObj(ManagedObjectReference value)
Sets the value of the obj property.
|
protected ManagedObjectReference obj
protected List<DynamicProperty> propSet
protected List<MissingProperty> missingSet
public ManagedObjectReference getObj()
ManagedObjectReferencepublic void setObj(ManagedObjectReference value)
value - allowed object is
ManagedObjectReferencepublic List<DynamicProperty> getPropSet()
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 propSet property.
For example, to add a new item, do as follows:
getPropSet().add(newItem);
Objects of the following type(s) are allowed in the list
DynamicProperty
public List<MissingProperty> getMissingSet()
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 missingSet property.
For example, to add a new item, do as follows:
getMissingSet().add(newItem);
Objects of the following type(s) are allowed in the list
MissingProperty
Copyright © 2018. All rights reserved.