![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.StorageProfile 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.XmlType;
/**
* Java class for StorageProfile complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StorageProfile">
* <complexContent>
* <extension base="{urn:vim25}ApplyProfile">
* <sequence>
* <element name="nasStorage" type="{urn:vim25}NasStorageProfile" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StorageProfile", propOrder = {
"nasStorage"
})
public class StorageProfile
extends ApplyProfile
{
protected List nasStorage;
/**
* Gets the value of the nasStorage 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 nasStorage property.
*
*
* For example, to add a new item, do as follows:
*
* getNasStorage().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NasStorageProfile }
*
*
*/
public List getNasStorage() {
if (nasStorage == null) {
nasStorage = new ArrayList();
}
return this.nasStorage;
}
}