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

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


/**
 * 

Java class for OvfFile complex type. * *

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

 * <complexType name="OvfFile">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="deviceId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="path" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="compressionMethod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="chunkSize" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="size" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="capacity" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="populatedSize" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OvfFile", propOrder = { "deviceId", "path", "compressionMethod", "chunkSize", "size", "capacity", "populatedSize" }) public class OvfFile extends DynamicData { @XmlElement(required = true) protected String deviceId; @XmlElement(required = true) protected String path; protected String compressionMethod; protected Long chunkSize; protected long size; protected Long capacity; protected Long populatedSize; /** * Gets the value of the deviceId property. * * @return * possible object is * {@link String } * */ public String getDeviceId() { return deviceId; } /** * Sets the value of the deviceId property. * * @param value * allowed object is * {@link String } * */ public void setDeviceId(String value) { this.deviceId = value; } /** * Gets the value of the path property. * * @return * possible object is * {@link String } * */ public String getPath() { return path; } /** * Sets the value of the path property. * * @param value * allowed object is * {@link String } * */ public void setPath(String value) { this.path = value; } /** * Gets the value of the compressionMethod property. * * @return * possible object is * {@link String } * */ public String getCompressionMethod() { return compressionMethod; } /** * Sets the value of the compressionMethod property. * * @param value * allowed object is * {@link String } * */ public void setCompressionMethod(String value) { this.compressionMethod = value; } /** * Gets the value of the chunkSize property. * * @return * possible object is * {@link Long } * */ public Long getChunkSize() { return chunkSize; } /** * Sets the value of the chunkSize property. * * @param value * allowed object is * {@link Long } * */ public void setChunkSize(Long value) { this.chunkSize = value; } /** * Gets the value of the size property. * */ public long getSize() { return size; } /** * Sets the value of the size property. * */ public void setSize(long value) { this.size = value; } /** * Gets the value of the capacity property. * * @return * possible object is * {@link Long } * */ public Long getCapacity() { return capacity; } /** * Sets the value of the capacity property. * * @param value * allowed object is * {@link Long } * */ public void setCapacity(Long value) { this.capacity = value; } /** * Gets the value of the populatedSize property. * * @return * possible object is * {@link Long } * */ public Long getPopulatedSize() { return populatedSize; } /** * Sets the value of the populatedSize property. * * @param value * allowed object is * {@link Long } * */ public void setPopulatedSize(Long value) { this.populatedSize = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy