com.vmware.vim25.BaseConfigInfo 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for BaseConfigInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BaseConfigInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="id" type="{urn:vim25}ID"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="createTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="backing" type="{urn:vim25}BaseConfigInfoBackingInfo"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BaseConfigInfo", propOrder = {
"id",
"name",
"createTime",
"backing"
})
@XmlSeeAlso({
VStorageObjectConfigInfo.class
})
public class BaseConfigInfo
extends DynamicData
{
@XmlElement(required = true)
protected ID id;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar createTime;
@XmlElement(required = true)
protected BaseConfigInfoBackingInfo backing;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link ID }
*
*/
public ID getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link ID }
*
*/
public void setId(ID value) {
this.id = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the createTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreateTime() {
return createTime;
}
/**
* Sets the value of the createTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCreateTime(XMLGregorianCalendar value) {
this.createTime = value;
}
/**
* Gets the value of the backing property.
*
* @return
* possible object is
* {@link BaseConfigInfoBackingInfo }
*
*/
public BaseConfigInfoBackingInfo getBacking() {
return backing;
}
/**
* Sets the value of the backing property.
*
* @param value
* allowed object is
* {@link BaseConfigInfoBackingInfo }
*
*/
public void setBacking(BaseConfigInfoBackingInfo value) {
this.backing = value;
}
}