
com.sun.xml.ws.commons.virtualbox.ISharedFolder Maven / Gradle / Ivy
package com.sun.xml.ws.commons.virtualbox;
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"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ISharedFolder", propOrder = {
"name",
"hostPath",
"accessible",
"writable"
})
public class ISharedFolder {
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String hostPath;
protected boolean accessible;
protected boolean writable;
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy