
com.vmware.vim25.HostPlugStoreTopology Maven / Gradle / Ivy
Show all versions of vi-api Show documentation
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 HostPlugStoreTopology complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostPlugStoreTopology">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="adapter" type="{urn:vim25}HostPlugStoreTopologyAdapter" maxOccurs="unbounded" minOccurs="0"/>
* <element name="path" type="{urn:vim25}HostPlugStoreTopologyPath" maxOccurs="unbounded" minOccurs="0"/>
* <element name="target" type="{urn:vim25}HostPlugStoreTopologyTarget" maxOccurs="unbounded" minOccurs="0"/>
* <element name="device" type="{urn:vim25}HostPlugStoreTopologyDevice" maxOccurs="unbounded" minOccurs="0"/>
* <element name="plugin" type="{urn:vim25}HostPlugStoreTopologyPlugin" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostPlugStoreTopology", propOrder = {
"adapter",
"path",
"target",
"device",
"plugin"
})
public class HostPlugStoreTopology
extends DynamicData
{
protected List adapter;
protected List path;
protected List target;
protected List device;
protected List plugin;
/**
* Gets the value of the adapter 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 adapter property.
*
*
* For example, to add a new item, do as follows:
*
* getAdapter().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostPlugStoreTopologyAdapter }
*
*
*/
public List getAdapter() {
if (adapter == null) {
adapter = new ArrayList();
}
return this.adapter;
}
/**
* Gets the value of the path 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 path property.
*
*
* For example, to add a new item, do as follows:
*
* getPath().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostPlugStoreTopologyPath }
*
*
*/
public List getPath() {
if (path == null) {
path = new ArrayList();
}
return this.path;
}
/**
* Gets the value of the target 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 target property.
*
*
* For example, to add a new item, do as follows:
*
* getTarget().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostPlugStoreTopologyTarget }
*
*
*/
public List getTarget() {
if (target == null) {
target = new ArrayList();
}
return this.target;
}
/**
* Gets the value of the device 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 device property.
*
*
* For example, to add a new item, do as follows:
*
* getDevice().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostPlugStoreTopologyDevice }
*
*
*/
public List getDevice() {
if (device == null) {
device = new ArrayList();
}
return this.device;
}
/**
* Gets the value of the plugin 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 plugin property.
*
*
* For example, to add a new item, do as follows:
*
* getPlugin().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostPlugStoreTopologyPlugin }
*
*
*/
public List getPlugin() {
if (plugin == null) {
plugin = new ArrayList();
}
return this.plugin;
}
/**
* Sets the value of the adapter property.
*
* @param adapter
* allowed object is
* {@link HostPlugStoreTopologyAdapter }
*
*/
public void setAdapter(List adapter) {
this.adapter = adapter;
}
/**
* Sets the value of the path property.
*
* @param path
* allowed object is
* {@link HostPlugStoreTopologyPath }
*
*/
public void setPath(List path) {
this.path = path;
}
/**
* Sets the value of the target property.
*
* @param target
* allowed object is
* {@link HostPlugStoreTopologyTarget }
*
*/
public void setTarget(List target) {
this.target = target;
}
/**
* Sets the value of the device property.
*
* @param device
* allowed object is
* {@link HostPlugStoreTopologyDevice }
*
*/
public void setDevice(List device) {
this.device = device;
}
/**
* Sets the value of the plugin property.
*
* @param plugin
* allowed object is
* {@link HostPlugStoreTopologyPlugin }
*
*/
public void setPlugin(List plugin) {
this.plugin = plugin;
}
}