
com.vmware.vim.HostStorageDeviceInfo Maven / Gradle / Ivy
Show all versions of vi-api Show documentation
package com.vmware.vim;
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 HostStorageDeviceInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostStorageDeviceInfo">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="hostBusAdapter" type="{urn:vim2}HostHostBusAdapter" maxOccurs="unbounded" minOccurs="0"/>
* <element name="scsiLun" type="{urn:vim2}ScsiLun" maxOccurs="unbounded" minOccurs="0"/>
* <element name="scsiTopology" type="{urn:vim2}HostScsiTopology" minOccurs="0"/>
* <element name="multipathInfo" type="{urn:vim2}HostMultipathInfo" minOccurs="0"/>
* <element name="softwareInternetScsiEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostStorageDeviceInfo", propOrder = {
"hostBusAdapter",
"scsiLun",
"scsiTopology",
"multipathInfo",
"softwareInternetScsiEnabled"
})
public class HostStorageDeviceInfo
extends DynamicData
{
protected List hostBusAdapter;
protected List scsiLun;
protected HostScsiTopology scsiTopology;
protected HostMultipathInfo multipathInfo;
protected boolean softwareInternetScsiEnabled;
/**
* Gets the value of the hostBusAdapter 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 hostBusAdapter property.
*
*
* For example, to add a new item, do as follows:
*
* getHostBusAdapter().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostHostBusAdapter }
*
*
*/
public List getHostBusAdapter() {
if (hostBusAdapter == null) {
hostBusAdapter = new ArrayList();
}
return this.hostBusAdapter;
}
/**
* Gets the value of the scsiLun 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 scsiLun property.
*
*
* For example, to add a new item, do as follows:
*
* getScsiLun().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ScsiLun }
*
*
*/
public List getScsiLun() {
if (scsiLun == null) {
scsiLun = new ArrayList();
}
return this.scsiLun;
}
/**
* Gets the value of the scsiTopology property.
*
* @return
* possible object is
* {@link HostScsiTopology }
*
*/
public HostScsiTopology getScsiTopology() {
return scsiTopology;
}
/**
* Sets the value of the scsiTopology property.
*
* @param value
* allowed object is
* {@link HostScsiTopology }
*
*/
public void setScsiTopology(HostScsiTopology value) {
this.scsiTopology = value;
}
/**
* Gets the value of the multipathInfo property.
*
* @return
* possible object is
* {@link HostMultipathInfo }
*
*/
public HostMultipathInfo getMultipathInfo() {
return multipathInfo;
}
/**
* Sets the value of the multipathInfo property.
*
* @param value
* allowed object is
* {@link HostMultipathInfo }
*
*/
public void setMultipathInfo(HostMultipathInfo value) {
this.multipathInfo = value;
}
/**
* Gets the value of the softwareInternetScsiEnabled property.
*
*/
public boolean isSoftwareInternetScsiEnabled() {
return softwareInternetScsiEnabled;
}
/**
* Sets the value of the softwareInternetScsiEnabled property.
*
*/
public void setSoftwareInternetScsiEnabled(boolean value) {
this.softwareInternetScsiEnabled = value;
}
/**
* Sets the value of the hostBusAdapter property.
*
* @param hostBusAdapter
* allowed object is
* {@link HostHostBusAdapter }
*
*/
public void setHostBusAdapter(List hostBusAdapter) {
this.hostBusAdapter = hostBusAdapter;
}
/**
* Sets the value of the scsiLun property.
*
* @param scsiLun
* allowed object is
* {@link ScsiLun }
*
*/
public void setScsiLun(List scsiLun) {
this.scsiLun = scsiLun;
}
}