![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostInternetScsiHbaSendTarget 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 HostInternetScsiHbaSendTarget complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostInternetScsiHbaSendTarget">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="port" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="authenticationProperties" type="{urn:vim25}HostInternetScsiHbaAuthenticationProperties" minOccurs="0"/>
* <element name="digestProperties" type="{urn:vim25}HostInternetScsiHbaDigestProperties" minOccurs="0"/>
* <element name="supportedAdvancedOptions" type="{urn:vim25}OptionDef" maxOccurs="unbounded" minOccurs="0"/>
* <element name="advancedOptions" type="{urn:vim25}HostInternetScsiHbaParamValue" maxOccurs="unbounded" minOccurs="0"/>
* <element name="parent" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostInternetScsiHbaSendTarget", propOrder = {
"address",
"port",
"authenticationProperties",
"digestProperties",
"supportedAdvancedOptions",
"advancedOptions",
"parent"
})
public class HostInternetScsiHbaSendTarget
extends DynamicData
{
@XmlElement(required = true)
protected String address;
protected Integer port;
protected HostInternetScsiHbaAuthenticationProperties authenticationProperties;
protected HostInternetScsiHbaDigestProperties digestProperties;
protected List supportedAdvancedOptions;
protected List advancedOptions;
protected String parent;
/**
* Gets the value of the address property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddress() {
return address;
}
/**
* Sets the value of the address property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddress(String value) {
this.address = value;
}
/**
* Gets the value of the port property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPort() {
return port;
}
/**
* Sets the value of the port property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPort(Integer value) {
this.port = value;
}
/**
* Gets the value of the authenticationProperties property.
*
* @return
* possible object is
* {@link HostInternetScsiHbaAuthenticationProperties }
*
*/
public HostInternetScsiHbaAuthenticationProperties getAuthenticationProperties() {
return authenticationProperties;
}
/**
* Sets the value of the authenticationProperties property.
*
* @param value
* allowed object is
* {@link HostInternetScsiHbaAuthenticationProperties }
*
*/
public void setAuthenticationProperties(HostInternetScsiHbaAuthenticationProperties value) {
this.authenticationProperties = value;
}
/**
* Gets the value of the digestProperties property.
*
* @return
* possible object is
* {@link HostInternetScsiHbaDigestProperties }
*
*/
public HostInternetScsiHbaDigestProperties getDigestProperties() {
return digestProperties;
}
/**
* Sets the value of the digestProperties property.
*
* @param value
* allowed object is
* {@link HostInternetScsiHbaDigestProperties }
*
*/
public void setDigestProperties(HostInternetScsiHbaDigestProperties value) {
this.digestProperties = value;
}
/**
* Gets the value of the supportedAdvancedOptions 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 supportedAdvancedOptions property.
*
*
* For example, to add a new item, do as follows:
*
* getSupportedAdvancedOptions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OptionDef }
*
*
*/
public List getSupportedAdvancedOptions() {
if (supportedAdvancedOptions == null) {
supportedAdvancedOptions = new ArrayList();
}
return this.supportedAdvancedOptions;
}
/**
* Gets the value of the advancedOptions 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 advancedOptions property.
*
*
* For example, to add a new item, do as follows:
*
* getAdvancedOptions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostInternetScsiHbaParamValue }
*
*
*/
public List getAdvancedOptions() {
if (advancedOptions == null) {
advancedOptions = new ArrayList();
}
return this.advancedOptions;
}
/**
* Gets the value of the parent property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getParent() {
return parent;
}
/**
* Sets the value of the parent property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setParent(String value) {
this.parent = value;
}
}