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

com.vmware.vim25.GuestWindowsFileAttributes 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for GuestWindowsFileAttributes complex type. * *

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

 * <complexType name="GuestWindowsFileAttributes">
 *   <complexContent>
 *     <extension base="{urn:vim25}GuestFileAttributes">
 *       <sequence>
 *         <element name="hidden" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="readOnly" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="createTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GuestWindowsFileAttributes", propOrder = { "hidden", "readOnly", "createTime" }) public class GuestWindowsFileAttributes extends GuestFileAttributes { protected Boolean hidden; protected Boolean readOnly; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar createTime; /** * Gets the value of the hidden property. * * @return * possible object is * {@link Boolean } * */ public Boolean isHidden() { return hidden; } /** * Sets the value of the hidden property. * * @param value * allowed object is * {@link Boolean } * */ public void setHidden(Boolean value) { this.hidden = value; } /** * Gets the value of the readOnly property. * * @return * possible object is * {@link Boolean } * */ public Boolean isReadOnly() { return readOnly; } /** * Sets the value of the readOnly property. * * @param value * allowed object is * {@link Boolean } * */ public void setReadOnly(Boolean value) { this.readOnly = 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy