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

com.vmware.vim.VmDiskFileQueryFlags Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VmDiskFileQueryFlags complex type. * *

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

 * <complexType name="VmDiskFileQueryFlags">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="diskType" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="capacityKb" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="hardwareVersion" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VmDiskFileQueryFlags", propOrder = { "diskType", "capacityKb", "hardwareVersion" }) public class VmDiskFileQueryFlags extends DynamicData { protected boolean diskType; protected boolean capacityKb; protected boolean hardwareVersion; /** * Gets the value of the diskType property. * */ public boolean isDiskType() { return diskType; } /** * Sets the value of the diskType property. * */ public void setDiskType(boolean value) { this.diskType = value; } /** * Gets the value of the capacityKb property. * */ public boolean isCapacityKb() { return capacityKb; } /** * Sets the value of the capacityKb property. * */ public void setCapacityKb(boolean value) { this.capacityKb = value; } /** * Gets the value of the hardwareVersion property. * */ public boolean isHardwareVersion() { return hardwareVersion; } /** * Sets the value of the hardwareVersion property. * */ public void setHardwareVersion(boolean value) { this.hardwareVersion = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy