com.vmware.vim25.GuestFileInfo 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 GuestFileInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GuestFileInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="path" 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="attributes" type="{urn:vim25}GuestFileAttributes"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GuestFileInfo", propOrder = {
"path",
"type",
"size",
"attributes"
})
public class GuestFileInfo
extends DynamicData
{
@XmlElement(required = true)
protected String path;
@XmlElement(required = true)
protected String type;
protected long size;
@XmlElement(required = true)
protected GuestFileAttributes attributes;
/**
* 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 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 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;
}
}