// // 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.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="cpu" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="memory" type="{http://www.w3.org/2001/XMLSchema}int"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "cpu", "memory" }) @XmlRootElement(name = "instance_type") public class InstanceType extends Resource { protected int cpu; protected int memory; /** * Gets the value of the cpu property. * */ public int getCpu() { return cpu; } /** * Sets the value of the cpu property. * */ public void setCpu(int value) { this.cpu = value; } /** * Gets the value of the memory property. * */ public int getMemory() { return memory; } /** * Sets the value of the memory property. * */ public void setMemory(int value) { this.memory = value; } }