// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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.08.02 at 12:16:58 PM BST // package net.sf.mpxj.primavera.schema; import java.util.Date; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for ResourceRateType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ResourceRateType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CreateDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="CreateUser" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="255"/> * </restriction> * </simpleType> * </element> * <element name="EffectiveDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="LastUpdateDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="LastUpdateUser" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="255"/> * </restriction> * </simpleType> * </element> * <element name="MaxUnitsPerTime" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * </restriction> * </simpleType> * </element> * <element name="ObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="PricePerUnit" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * <maxInclusive value="9.99999999999999E12"/> * </restriction> * </simpleType> * </element> * <element name="PricePerUnit2" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * <maxInclusive value="9.99999999999999E12"/> * </restriction> * </simpleType> * </element> * <element name="PricePerUnit3" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * <maxInclusive value="9.99999999999999E12"/> * </restriction> * </simpleType> * </element> * <element name="PricePerUnit4" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * <maxInclusive value="9.99999999999999E12"/> * </restriction> * </simpleType> * </element> * <element name="PricePerUnit5" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * <maxInclusive value="9.99999999999999E12"/> * </restriction> * </simpleType> * </element> * <element name="ResourceId" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="20"/> * </restriction> * </simpleType> * </element> * <element name="ResourceName" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="100"/> * </restriction> * </simpleType> * </element> * <element name="ResourceObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="ShiftPeriodObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResourceRateType", propOrder = { "createDate", "createUser", "effectiveDate", "lastUpdateDate", "lastUpdateUser", "maxUnitsPerTime", "objectId", "pricePerUnit", "pricePerUnit2", "pricePerUnit3", "pricePerUnit4", "pricePerUnit5", "resourceId", "resourceName", "resourceObjectId", "shiftPeriodObjectId" }) public class ResourceRateType { @XmlElement(name = "CreateDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date createDate; @XmlElement(name = "CreateUser") protected String createUser; @XmlElement(name = "EffectiveDate", type = String.class) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date effectiveDate; @XmlElement(name = "LastUpdateDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date lastUpdateDate; @XmlElement(name = "LastUpdateUser") protected String lastUpdateUser; @XmlElement(name = "MaxUnitsPerTime", nillable = true) protected Double maxUnitsPerTime; @XmlElement(name = "ObjectId") protected Integer objectId; @XmlElement(name = "PricePerUnit", nillable = true) protected Double pricePerUnit; @XmlElement(name = "PricePerUnit2", nillable = true) protected Double pricePerUnit2; @XmlElement(name = "PricePerUnit3", nillable = true) protected Double pricePerUnit3; @XmlElement(name = "PricePerUnit4", nillable = true) protected Double pricePerUnit4; @XmlElement(name = "PricePerUnit5", nillable = true) protected Double pricePerUnit5; @XmlElement(name = "ResourceId") protected String resourceId; @XmlElement(name = "ResourceName") protected String resourceName; @XmlElement(name = "ResourceObjectId") protected Integer resourceObjectId; @XmlElement(name = "ShiftPeriodObjectId", nillable = true) protected Integer shiftPeriodObjectId; /** * Gets the value of the createDate property. * * @return * possible object is * {@link String } * */ public Date getCreateDate() { return createDate; } /** * Sets the value of the createDate property. * * @param value * allowed object is * {@link String } * */ public void setCreateDate(Date value) { this.createDate = value; } /** * Gets the value of the createUser property. * * @return * possible object is * {@link String } * */ public String getCreateUser() { return createUser; } /** * Sets the value of the createUser property. * * @param value * allowed object is * {@link String } * */ public void setCreateUser(String value) { this.createUser = value; } /** * Gets the value of the effectiveDate property. * * @return * possible object is * {@link String } * */ public Date getEffectiveDate() { return effectiveDate; } /** * Sets the value of the effectiveDate property. * * @param value * allowed object is * {@link String } * */ public void setEffectiveDate(Date value) { this.effectiveDate = value; } /** * Gets the value of the lastUpdateDate property. * * @return * possible object is * {@link String } * */ public Date getLastUpdateDate() { return lastUpdateDate; } /** * Sets the value of the lastUpdateDate property. * * @param value * allowed object is * {@link String } * */ public void setLastUpdateDate(Date value) { this.lastUpdateDate = value; } /** * Gets the value of the lastUpdateUser property. * * @return * possible object is * {@link String } * */ public String getLastUpdateUser() { return lastUpdateUser; } /** * Sets the value of the lastUpdateUser property. * * @param value * allowed object is * {@link String } * */ public void setLastUpdateUser(String value) { this.lastUpdateUser = value; } /** * Gets the value of the maxUnitsPerTime property. * * @return * possible object is * {@link Double } * */ public Double getMaxUnitsPerTime() { return maxUnitsPerTime; } /** * Sets the value of the maxUnitsPerTime property. * * @param value * allowed object is * {@link Double } * */ public void setMaxUnitsPerTime(Double value) { this.maxUnitsPerTime = value; } /** * Gets the value of the objectId property. * * @return * possible object is * {@link Integer } * */ public Integer getObjectId() { return objectId; } /** * Sets the value of the objectId property. * * @param value * allowed object is * {@link Integer } * */ public void setObjectId(Integer value) { this.objectId = value; } /** * Gets the value of the pricePerUnit property. * * @return * possible object is * {@link Double } * */ public Double getPricePerUnit() { return pricePerUnit; } /** * Sets the value of the pricePerUnit property. * * @param value * allowed object is * {@link Double } * */ public void setPricePerUnit(Double value) { this.pricePerUnit = value; } /** * Gets the value of the pricePerUnit2 property. * * @return * possible object is * {@link Double } * */ public Double getPricePerUnit2() { return pricePerUnit2; } /** * Sets the value of the pricePerUnit2 property. * * @param value * allowed object is * {@link Double } * */ public void setPricePerUnit2(Double value) { this.pricePerUnit2 = value; } /** * Gets the value of the pricePerUnit3 property. * * @return * possible object is * {@link Double } * */ public Double getPricePerUnit3() { return pricePerUnit3; } /** * Sets the value of the pricePerUnit3 property. * * @param value * allowed object is * {@link Double } * */ public void setPricePerUnit3(Double value) { this.pricePerUnit3 = value; } /** * Gets the value of the pricePerUnit4 property. * * @return * possible object is * {@link Double } * */ public Double getPricePerUnit4() { return pricePerUnit4; } /** * Sets the value of the pricePerUnit4 property. * * @param value * allowed object is * {@link Double } * */ public void setPricePerUnit4(Double value) { this.pricePerUnit4 = value; } /** * Gets the value of the pricePerUnit5 property. * * @return * possible object is * {@link Double } * */ public Double getPricePerUnit5() { return pricePerUnit5; } /** * Sets the value of the pricePerUnit5 property. * * @param value * allowed object is * {@link Double } * */ public void setPricePerUnit5(Double value) { this.pricePerUnit5 = value; } /** * Gets the value of the resourceId property. * * @return * possible object is * {@link String } * */ public String getResourceId() { return resourceId; } /** * Sets the value of the resourceId property. * * @param value * allowed object is * {@link String } * */ public void setResourceId(String value) { this.resourceId = value; } /** * Gets the value of the resourceName property. * * @return * possible object is * {@link String } * */ public String getResourceName() { return resourceName; } /** * Sets the value of the resourceName property. * * @param value * allowed object is * {@link String } * */ public void setResourceName(String value) { this.resourceName = value; } /** * Gets the value of the resourceObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getResourceObjectId() { return resourceObjectId; } /** * Sets the value of the resourceObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setResourceObjectId(Integer value) { this.resourceObjectId = value; } /** * Gets the value of the shiftPeriodObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getShiftPeriodObjectId() { return shiftPeriodObjectId; } /** * Sets the value of the shiftPeriodObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setShiftPeriodObjectId(Integer value) { this.shiftPeriodObjectId = value; } }