com.vmware.vim25.FileTransferInformation 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 FileTransferInformation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FileTransferInformation">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="attributes" type="{urn:vim25}GuestFileAttributes"/>
* <element name="size" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FileTransferInformation", propOrder = {
"attributes",
"size",
"url"
})
public class FileTransferInformation
extends DynamicData
{
@XmlElement(required = true)
protected GuestFileAttributes attributes;
protected long size;
@XmlElement(required = true)
protected String url;
/**
* Gets the value of the attributes property.
*
* @return
* possible object is
* {@link GuestFileAttributes }
*
*/
public GuestFileAttributes getAttributes() {
return attributes;
}
/**
* Sets the value of the attributes property.
*
* @param value
* allowed object is
* {@link GuestFileAttributes }
*
*/
public void setAttributes(GuestFileAttributes value) {
this.attributes = 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 url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
}