com.vmware.vim25.VirtualMachineFileLayoutExFileInfo 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 VirtualMachineFileLayoutExFileInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineFileLayoutExFileInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="key" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="size" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="uniqueSize" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
* <element name="backingObjectId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="accessible" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineFileLayoutExFileInfo", propOrder = {
"key",
"name",
"type",
"size",
"uniqueSize",
"backingObjectId",
"accessible"
})
public class VirtualMachineFileLayoutExFileInfo
extends DynamicData
{
protected int key;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String type;
protected long size;
protected Long uniqueSize;
protected String backingObjectId;
protected Boolean accessible;
/**
* Gets the value of the key property.
*
*/
public int getKey() {
return key;
}
/**
* Sets the value of the key property.
*
*/
public void setKey(int value) {
this.key = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = 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 uniqueSize property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getUniqueSize() {
return uniqueSize;
}
/**
* Sets the value of the uniqueSize property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setUniqueSize(Long value) {
this.uniqueSize = value;
}
/**
* Gets the value of the backingObjectId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBackingObjectId() {
return backingObjectId;
}
/**
* Sets the value of the backingObjectId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBackingObjectId(String value) {
this.backingObjectId = value;
}
/**
* Gets the value of the accessible property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAccessible() {
return accessible;
}
/**
* Sets the value of the accessible property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAccessible(Boolean value) {
this.accessible = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy