All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.HostStorageDeviceInfo Maven / Gradle / Ivy

The newest version!

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 HostStorageDeviceInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="HostStorageDeviceInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="hostBusAdapter" type="{urn:vim25}HostHostBusAdapter" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="scsiLun" type="{urn:vim25}ScsiLun" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="scsiTopology" type="{urn:vim25}HostScsiTopology" minOccurs="0"/>
 *         <element name="multipathInfo" type="{urn:vim25}HostMultipathInfo" minOccurs="0"/>
 *         <element name="plugStoreTopology" type="{urn:vim25}HostPlugStoreTopology" 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", "plugStoreTopology", "softwareInternetScsiEnabled" }) public class HostStorageDeviceInfo extends DynamicData { protected List hostBusAdapter; protected List scsiLun; protected HostScsiTopology scsiTopology; protected HostMultipathInfo multipathInfo; protected HostPlugStoreTopology plugStoreTopology; 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 plugStoreTopology property. * * @return * possible object is * {@link HostPlugStoreTopology } * */ public HostPlugStoreTopology getPlugStoreTopology() { return plugStoreTopology; } /** * Sets the value of the plugStoreTopology property. * * @param value * allowed object is * {@link HostPlugStoreTopology } * */ public void setPlugStoreTopology(HostPlugStoreTopology value) { this.plugStoreTopology = 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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy