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