![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostInternetScsiTargetTransport 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HostInternetScsiTargetTransport complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostInternetScsiTargetTransport">
* <complexContent>
* <extension base="{urn:vim25}HostTargetTransport">
* <sequence>
* <element name="iScsiName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="iScsiAlias" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="address" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostInternetScsiTargetTransport", propOrder = {
"iScsiName",
"iScsiAlias",
"address"
})
public class HostInternetScsiTargetTransport
extends HostTargetTransport
{
@XmlElement(required = true)
protected String iScsiName;
@XmlElement(required = true)
protected String iScsiAlias;
protected List address;
/**
* Gets the value of the iScsiName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIScsiName() {
return iScsiName;
}
/**
* Sets the value of the iScsiName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIScsiName(String value) {
this.iScsiName = value;
}
/**
* Gets the value of the iScsiAlias property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIScsiAlias() {
return iScsiAlias;
}
/**
* Sets the value of the iScsiAlias property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIScsiAlias(String value) {
this.iScsiAlias = value;
}
/**
* Gets the value of the address 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 address property.
*
*
* For example, to add a new item, do as follows:
*
* getAddress().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getAddress() {
if (address == null) {
address = new ArrayList();
}
return this.address;
}
}