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

com.vmware.vim25.VirtualDiskFlatVer1BackingInfo 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.XmlType;


/**
 * 

Java class for VirtualDiskFlatVer1BackingInfo complex type. * *

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

 * <complexType name="VirtualDiskFlatVer1BackingInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}VirtualDeviceFileBackingInfo">
 *       <sequence>
 *         <element name="diskMode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="split" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="writeThrough" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="contentId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="parent" type="{urn:vim25}VirtualDiskFlatVer1BackingInfo" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDiskFlatVer1BackingInfo", propOrder = { "diskMode", "split", "writeThrough", "contentId", "parent" }) public class VirtualDiskFlatVer1BackingInfo extends VirtualDeviceFileBackingInfo { @XmlElement(required = true) protected String diskMode; protected Boolean split; protected Boolean writeThrough; protected String contentId; protected VirtualDiskFlatVer1BackingInfo parent; /** * Gets the value of the diskMode property. * * @return * possible object is * {@link String } * */ public String getDiskMode() { return diskMode; } /** * Sets the value of the diskMode property. * * @param value * allowed object is * {@link String } * */ public void setDiskMode(String value) { this.diskMode = value; } /** * Gets the value of the split property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSplit() { return split; } /** * Sets the value of the split property. * * @param value * allowed object is * {@link Boolean } * */ public void setSplit(Boolean value) { this.split = value; } /** * Gets the value of the writeThrough property. * * @return * possible object is * {@link Boolean } * */ public Boolean isWriteThrough() { return writeThrough; } /** * Sets the value of the writeThrough property. * * @param value * allowed object is * {@link Boolean } * */ public void setWriteThrough(Boolean value) { this.writeThrough = value; } /** * Gets the value of the contentId property. * * @return * possible object is * {@link String } * */ public String getContentId() { return contentId; } /** * Sets the value of the contentId property. * * @param value * allowed object is * {@link String } * */ public void setContentId(String value) { this.contentId = value; } /** * Gets the value of the parent property. * * @return * possible object is * {@link VirtualDiskFlatVer1BackingInfo } * */ public VirtualDiskFlatVer1BackingInfo getParent() { return parent; } /** * Sets the value of the parent property. * * @param value * allowed object is * {@link VirtualDiskFlatVer1BackingInfo } * */ public void setParent(VirtualDiskFlatVer1BackingInfo value) { this.parent = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy