// // 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 RoleRateType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RoleRateType"> * <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="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="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="RoleId" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="20"/> * </restriction> * </simpleType> * </element> * <element name="RoleName" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="100"/> * </restriction> * </simpleType> * </element> * <element name="RoleObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RoleRateType", propOrder = { "createDate", "createUser", "lastUpdateDate", "lastUpdateUser", "objectId", "pricePerUnit", "pricePerUnit2", "pricePerUnit3", "pricePerUnit4", "pricePerUnit5", "roleId", "roleName", "roleObjectId" }) public class RoleRateType { @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 = "LastUpdateDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date lastUpdateDate; @XmlElement(name = "LastUpdateUser") protected String lastUpdateUser; @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 = "RoleId") protected String roleId; @XmlElement(name = "RoleName") protected String roleName; @XmlElement(name = "RoleObjectId") protected Integer roleObjectId; /** * 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 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 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 roleId property. * * @return * possible object is * {@link String } * */ public String getRoleId() { return roleId; } /** * Sets the value of the roleId property. * * @param value * allowed object is * {@link String } * */ public void setRoleId(String value) { this.roleId = value; } /** * Gets the value of the roleName property. * * @return * possible object is * {@link String } * */ public String getRoleName() { return roleName; } /** * Sets the value of the roleName property. * * @param value * allowed object is * {@link String } * */ public void setRoleName(String value) { this.roleName = value; } /** * Gets the value of the roleObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getRoleObjectId() { return roleObjectId; } /** * Sets the value of the roleObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setRoleObjectId(Integer value) { this.roleObjectId = value; } }