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

com.vmware.vim25.GuestRegKeySpec 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 GuestRegKeySpec complex type. * *

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

 * <complexType name="GuestRegKeySpec">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="keyName" type="{urn:vim25}GuestRegKeyNameSpec"/>
 *         <element name="classType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="lastWritten" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GuestRegKeySpec", propOrder = { "keyName", "classType", "lastWritten" }) public class GuestRegKeySpec extends DynamicData { @XmlElement(required = true) protected GuestRegKeyNameSpec keyName; @XmlElement(required = true) protected String classType; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastWritten; /** * Gets the value of the keyName property. * * @return * possible object is * {@link GuestRegKeyNameSpec } * */ public GuestRegKeyNameSpec getKeyName() { return keyName; } /** * Sets the value of the keyName property. * * @param value * allowed object is * {@link GuestRegKeyNameSpec } * */ public void setKeyName(GuestRegKeyNameSpec value) { this.keyName = value; } /** * Gets the value of the classType property. * * @return * possible object is * {@link String } * */ public String getClassType() { return classType; } /** * Sets the value of the classType property. * * @param value * allowed object is * {@link String } * */ public void setClassType(String value) { this.classType = value; } /** * Gets the value of the lastWritten property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastWritten() { return lastWritten; } /** * Sets the value of the lastWritten property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastWritten(XMLGregorianCalendar value) { this.lastWritten = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy