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

com.vmware.vim25.HostVvolVolume 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for HostVvolVolume complex type. * *

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

 * <complexType name="HostVvolVolume">
 *   <complexContent>
 *     <extension base="{urn:vim25}HostFileSystemVolume">
 *       <sequence>
 *         <element name="scId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="hostPE" type="{urn:vim25}VVolHostPE" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="vasaProviderInfo" type="{urn:vim25}VimVasaProviderInfo" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="storageArray" type="{urn:vim25}VASAStorageArray" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostVvolVolume", propOrder = { "scId", "hostPE", "vasaProviderInfo", "storageArray" }) public class HostVvolVolume extends HostFileSystemVolume { @XmlElement(required = true) protected String scId; protected List hostPE; protected List vasaProviderInfo; protected List storageArray; /** * Gets the value of the scId property. * * @return * possible object is * {@link String } * */ public String getScId() { return scId; } /** * Sets the value of the scId property. * * @param value * allowed object is * {@link String } * */ public void setScId(String value) { this.scId = value; } /** * Gets the value of the hostPE 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 hostPE property. * *

* For example, to add a new item, do as follows: *

     *    getHostPE().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VVolHostPE } * * */ public List getHostPE() { if (hostPE == null) { hostPE = new ArrayList(); } return this.hostPE; } /** * Gets the value of the vasaProviderInfo 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 vasaProviderInfo property. * *

* For example, to add a new item, do as follows: *

     *    getVasaProviderInfo().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VimVasaProviderInfo } * * */ public List getVasaProviderInfo() { if (vasaProviderInfo == null) { vasaProviderInfo = new ArrayList(); } return this.vasaProviderInfo; } /** * Gets the value of the storageArray 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 storageArray property. * *

* For example, to add a new item, do as follows: *

     *    getStorageArray().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VASAStorageArray } * * */ public List getStorageArray() { if (storageArray == null) { storageArray = new ArrayList(); } return this.storageArray; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy