com.vmware.vim25.VStorageObject Maven / Gradle / Ivy
package com.vmware.vim25;
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 VStorageObject complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VStorageObject">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="config" type="{urn:vim25}VStorageObjectConfigInfo"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VStorageObject", propOrder = {
"config"
})
public class VStorageObject
extends DynamicData
{
@XmlElement(required = true)
protected VStorageObjectConfigInfo config;
/**
* Gets the value of the config property.
*
* @return
* possible object is
* {@link VStorageObjectConfigInfo }
*
*/
public VStorageObjectConfigInfo getConfig() {
return config;
}
/**
* Sets the value of the config property.
*
* @param value
* allowed object is
* {@link VStorageObjectConfigInfo }
*
*/
public void setConfig(VStorageObjectConfigInfo value) {
this.config = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy