// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.3u2-hudson-jaxb-ri-2.2.3-4- // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.10.02 at 07:10:30 PM EDT // package seg.jUCMNav.nfp.generated; 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 ResourceReq complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ResourceReq">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="category" type="{}ResourceKind"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="quantity" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="unit" type="{}ResourceUnitKind"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResourceReq", propOrder = { "category", "description", "quantity", "unit" }) public class ResourceReq { @XmlElement(required = true) protected ResourceKind category; @XmlElement(required = true) protected String description; protected double quantity; @XmlElement(required = true) protected ResourceUnitKind unit; /** * Gets the value of the category property. * * @return * possible object is * {@link ResourceKind } * */ public ResourceKind getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link ResourceKind } * */ public void setCategory(ResourceKind value) { this.category = 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 quantity property. * */ public double getQuantity() { return quantity; } /** * Sets the value of the quantity property. * */ public void setQuantity(double value) { this.quantity = value; } /** * Gets the value of the unit property. * * @return * possible object is * {@link ResourceUnitKind } * */ public ResourceUnitKind getUnit() { return unit; } /** * Sets the value of the unit property. * * @param value * allowed object is * {@link ResourceUnitKind } * */ public void setUnit(ResourceUnitKind value) { this.unit = value; } }