![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.OvfFileItem 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 OvfFileItem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OvfFileItem">
* <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" minOccurs="0"/>
* <element name="cimType" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="create" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OvfFileItem", propOrder = {
"deviceId",
"path",
"compressionMethod",
"chunkSize",
"size",
"cimType",
"create"
})
public class OvfFileItem
extends DynamicData
{
@XmlElement(required = true)
protected String deviceId;
@XmlElement(required = true)
protected String path;
protected String compressionMethod;
protected Long chunkSize;
protected Long size;
protected int cimType;
protected boolean create;
/**
* 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.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSize() {
return size;
}
/**
* Sets the value of the size property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSize(Long value) {
this.size = value;
}
/**
* Gets the value of the cimType property.
*
*/
public int getCimType() {
return cimType;
}
/**
* Sets the value of the cimType property.
*
*/
public void setCimType(int value) {
this.cimType = value;
}
/**
* Gets the value of the create property.
*
*/
public boolean isCreate() {
return create;
}
/**
* Sets the value of the create property.
*
*/
public void setCreate(boolean value) {
this.create = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy