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

com.vmware.vim.VirtualDiskRawDiskVer2BackingInfo 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.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VirtualDiskRawDiskVer2BackingInfo complex type. * *

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

 * <complexType name="VirtualDiskRawDiskVer2BackingInfo">
 *   <complexContent>
 *     <extension base="{urn:vim2}VirtualDeviceDeviceBackingInfo">
 *       <sequence>
 *         <element name="descriptorFileName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualDiskRawDiskVer2BackingInfo", propOrder = { "descriptorFileName" }) @XmlSeeAlso({ VirtualDiskPartitionedRawDiskVer2BackingInfo.class }) public class VirtualDiskRawDiskVer2BackingInfo extends VirtualDeviceDeviceBackingInfo { @XmlElement(required = true) protected String descriptorFileName; /** * Gets the value of the descriptorFileName property. * * @return * possible object is * {@link String } * */ public String getDescriptorFileName() { return descriptorFileName; } /** * Sets the value of the descriptorFileName property. * * @param value * allowed object is * {@link String } * */ public void setDescriptorFileName(String value) { this.descriptorFileName = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy