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

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

There is a newer version: 0.6.60
Show newest version

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.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for CustomizationSpecInfo complex type. * *

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

 * <complexType name="CustomizationSpecInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="changeVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="lastUpdateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CustomizationSpecInfo", propOrder = { "name", "description", "type", "changeVersion", "lastUpdateTime" }) public class CustomizationSpecInfo extends DynamicData { @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String description; @XmlElement(required = true) protected String type; protected String changeVersion; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastUpdateTime; /** * 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 description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the changeVersion property. * * @return * possible object is * {@link String } * */ public String getChangeVersion() { return changeVersion; } /** * Sets the value of the changeVersion property. * * @param value * allowed object is * {@link String } * */ public void setChangeVersion(String value) { this.changeVersion = value; } /** * Gets the value of the lastUpdateTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastUpdateTime() { return lastUpdateTime; } /** * Sets the value of the lastUpdateTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastUpdateTime(XMLGregorianCalendar value) { this.lastUpdateTime = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy