com.vmware.vim25.HttpNfcLeaseManifestEntry 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 HttpNfcLeaseManifestEntry complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HttpNfcLeaseManifestEntry">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sha1" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="size" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="disk" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <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 = "HttpNfcLeaseManifestEntry", propOrder = {
"key",
"sha1",
"size",
"disk",
"capacity",
"populatedSize"
})
public class HttpNfcLeaseManifestEntry
extends DynamicData
{
@XmlElement(required = true)
protected String key;
@XmlElement(required = true)
protected String sha1;
protected long size;
protected boolean disk;
protected Long capacity;
protected Long populatedSize;
/**
* Gets the value of the key property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKey() {
return key;
}
/**
* Sets the value of the key property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKey(String value) {
this.key = value;
}
/**
* Gets the value of the sha1 property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSha1() {
return sha1;
}
/**
* Sets the value of the sha1 property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSha1(String value) {
this.sha1 = 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 disk property.
*
*/
public boolean isDisk() {
return disk;
}
/**
* Sets the value of the disk property.
*
*/
public void setDisk(boolean value) {
this.disk = 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;
}
}