org.virtualbox_4_2.jaxws.ISharedFolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vboxjws Show documentation
Show all versions of vboxjws Show documentation
VirtualBox Client API 4.2.4
package org.virtualbox_4_2.jaxws;
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 ISharedFolder complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ISharedFolder">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="hostPath" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="accessible" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="writable" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="autoMount" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="lastAccessError" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ISharedFolder", propOrder = {
"name",
"hostPath",
"accessible",
"writable",
"autoMount",
"lastAccessError"
})
public class ISharedFolder {
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String hostPath;
protected boolean accessible;
protected boolean writable;
protected boolean autoMount;
@XmlElement(required = true)
protected String lastAccessError;
/**
* 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 hostPath property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHostPath() {
return hostPath;
}
/**
* Sets the value of the hostPath property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHostPath(String value) {
this.hostPath = value;
}
/**
* Gets the value of the accessible property.
*
*/
public boolean isAccessible() {
return accessible;
}
/**
* Sets the value of the accessible property.
*
*/
public void setAccessible(boolean value) {
this.accessible = value;
}
/**
* Gets the value of the writable property.
*
*/
public boolean isWritable() {
return writable;
}
/**
* Sets the value of the writable property.
*
*/
public void setWritable(boolean value) {
this.writable = value;
}
/**
* Gets the value of the autoMount property.
*
*/
public boolean isAutoMount() {
return autoMount;
}
/**
* Sets the value of the autoMount property.
*
*/
public void setAutoMount(boolean value) {
this.autoMount = value;
}
/**
* Gets the value of the lastAccessError property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastAccessError() {
return lastAccessError;
}
/**
* Sets the value of the lastAccessError property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastAccessError(String value) {
this.lastAccessError = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy