// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.10.08 at 05:41:25 PM CEST // package eu.betaas.taas.taasvmmanager.occi.datamodel; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <extension base="{}resource"> * <sequence> * <element name="user" type="{}link"/> * <element name="group" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="type" type="{}storage_type" minOccurs="0"/> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="size" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="fstype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "user", "group", "type", "description", "size", "fstype" }) @XmlRootElement(name = "storage") public class Storage extends Resource { @XmlElement(required = true) protected Link user; @XmlElement(required = true) protected String group; protected StorageType type; protected String description; protected String size; protected String fstype; /** * Gets the value of the user property. * * @return * possible object is * {@link Link } * */ public Link getUser() { return user; } /** * Sets the value of the user property. * * @param value * allowed object is * {@link Link } * */ public void setUser(Link value) { this.user = value; } /** * Gets the value of the group property. * * @return * possible object is * {@link String } * */ public String getGroup() { return group; } /** * Sets the value of the group property. * * @param value * allowed object is * {@link String } * */ public void setGroup(String value) { this.group = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link StorageType } * */ public StorageType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link StorageType } * */ public void setType(StorageType value) { this.type = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the size property. * * @return * possible object is * {@link String } * */ public String getSize() { return size; } /** * Sets the value of the size property. * * @param value * allowed object is * {@link String } * */ public void setSize(String value) { this.size = value; } /** * Gets the value of the fstype property. * * @return * possible object is * {@link String } * */ public String getFstype() { return fstype; } /** * Sets the value of the fstype property. * * @param value * allowed object is * {@link String } * */ public void setFstype(String value) { this.fstype = value; } }