// // 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 ResourceAssignmentUpdateType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ResourceAssignmentUpdateType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ActivityObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="ApprovalDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="ApprovalUserName" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="255"/> * </restriction> * </simpleType> * </element> * <element name="ApprovalUserObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="ChangeSetObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="Date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="HeldDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="OverrideActualFinishDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="OverrideActualStartDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="OverrideActualUnits" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * </restriction> * </simpleType> * </element> * <element name="OverrideRemainingDuration" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * </restriction> * </simpleType> * </element> * <element name="OverrideRemainingFinishDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="OverrideRemainingUnits" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * </restriction> * </simpleType> * </element> * <element name="PendingActualFinishDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="PendingActualStartDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="PendingActualUnits" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * </restriction> * </simpleType> * </element> * <element name="PendingRemainingDuration" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * </restriction> * </simpleType> * </element> * <element name="PendingRemainingFinishDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="PendingRemainingUnits" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}double"> * <minInclusive value="0.0"/> * </restriction> * </simpleType> * </element> * <element name="ProjectObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="RequestUserObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="ResourceAssignmentObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="Status" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="Pending"/> * <enumeration value="Held"/> * <enumeration value="Approved"/> * </restriction> * </simpleType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResourceAssignmentUpdateType", propOrder = { "activityObjectId", "approvalDate", "approvalUserName", "approvalUserObjectId", "changeSetObjectId", "date", "heldDate", "overrideActualFinishDate", "overrideActualStartDate", "overrideActualUnits", "overrideRemainingDuration", "overrideRemainingFinishDate", "overrideRemainingUnits", "pendingActualFinishDate", "pendingActualStartDate", "pendingActualUnits", "pendingRemainingDuration", "pendingRemainingFinishDate", "pendingRemainingUnits", "projectObjectId", "requestUserObjectId", "resourceAssignmentObjectId", "status" }) public class ResourceAssignmentUpdateType { @XmlElement(name = "ActivityObjectId") protected Integer activityObjectId; @XmlElement(name = "ApprovalDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date approvalDate; @XmlElement(name = "ApprovalUserName") protected String approvalUserName; @XmlElement(name = "ApprovalUserObjectId", nillable = true) protected Integer approvalUserObjectId; @XmlElement(name = "ChangeSetObjectId") protected Integer changeSetObjectId; @XmlElement(name = "Date", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date date; @XmlElement(name = "HeldDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date heldDate; @XmlElement(name = "OverrideActualFinishDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date overrideActualFinishDate; @XmlElement(name = "OverrideActualStartDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date overrideActualStartDate; @XmlElement(name = "OverrideActualUnits", nillable = true) protected Double overrideActualUnits; @XmlElement(name = "OverrideRemainingDuration", nillable = true) protected Double overrideRemainingDuration; @XmlElement(name = "OverrideRemainingFinishDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date overrideRemainingFinishDate; @XmlElement(name = "OverrideRemainingUnits", nillable = true) protected Double overrideRemainingUnits; @XmlElement(name = "PendingActualFinishDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date pendingActualFinishDate; @XmlElement(name = "PendingActualStartDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date pendingActualStartDate; @XmlElement(name = "PendingActualUnits", nillable = true) protected Double pendingActualUnits; @XmlElement(name = "PendingRemainingDuration", nillable = true) protected Double pendingRemainingDuration; @XmlElement(name = "PendingRemainingFinishDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date pendingRemainingFinishDate; @XmlElement(name = "PendingRemainingUnits", nillable = true) protected Double pendingRemainingUnits; @XmlElement(name = "ProjectObjectId") protected Integer projectObjectId; @XmlElement(name = "RequestUserObjectId", nillable = true) protected Integer requestUserObjectId; @XmlElement(name = "ResourceAssignmentObjectId") protected Integer resourceAssignmentObjectId; @XmlElement(name = "Status") protected String status; /** * Gets the value of the activityObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getActivityObjectId() { return activityObjectId; } /** * Sets the value of the activityObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setActivityObjectId(Integer value) { this.activityObjectId = value; } /** * Gets the value of the approvalDate property. * * @return * possible object is * {@link String } * */ public Date getApprovalDate() { return approvalDate; } /** * Sets the value of the approvalDate property. * * @param value * allowed object is * {@link String } * */ public void setApprovalDate(Date value) { this.approvalDate = value; } /** * Gets the value of the approvalUserName property. * * @return * possible object is * {@link String } * */ public String getApprovalUserName() { return approvalUserName; } /** * Sets the value of the approvalUserName property. * * @param value * allowed object is * {@link String } * */ public void setApprovalUserName(String value) { this.approvalUserName = value; } /** * Gets the value of the approvalUserObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getApprovalUserObjectId() { return approvalUserObjectId; } /** * Sets the value of the approvalUserObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setApprovalUserObjectId(Integer value) { this.approvalUserObjectId = value; } /** * Gets the value of the changeSetObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getChangeSetObjectId() { return changeSetObjectId; } /** * Sets the value of the changeSetObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setChangeSetObjectId(Integer value) { this.changeSetObjectId = value; } /** * Gets the value of the date property. * * @return * possible object is * {@link String } * */ public Date getDate() { return date; } /** * Sets the value of the date property. * * @param value * allowed object is * {@link String } * */ public void setDate(Date value) { this.date = value; } /** * Gets the value of the heldDate property. * * @return * possible object is * {@link String } * */ public Date getHeldDate() { return heldDate; } /** * Sets the value of the heldDate property. * * @param value * allowed object is * {@link String } * */ public void setHeldDate(Date value) { this.heldDate = value; } /** * Gets the value of the overrideActualFinishDate property. * * @return * possible object is * {@link String } * */ public Date getOverrideActualFinishDate() { return overrideActualFinishDate; } /** * Sets the value of the overrideActualFinishDate property. * * @param value * allowed object is * {@link String } * */ public void setOverrideActualFinishDate(Date value) { this.overrideActualFinishDate = value; } /** * Gets the value of the overrideActualStartDate property. * * @return * possible object is * {@link String } * */ public Date getOverrideActualStartDate() { return overrideActualStartDate; } /** * Sets the value of the overrideActualStartDate property. * * @param value * allowed object is * {@link String } * */ public void setOverrideActualStartDate(Date value) { this.overrideActualStartDate = value; } /** * Gets the value of the overrideActualUnits property. * * @return * possible object is * {@link Double } * */ public Double getOverrideActualUnits() { return overrideActualUnits; } /** * Sets the value of the overrideActualUnits property. * * @param value * allowed object is * {@link Double } * */ public void setOverrideActualUnits(Double value) { this.overrideActualUnits = value; } /** * Gets the value of the overrideRemainingDuration property. * * @return * possible object is * {@link Double } * */ public Double getOverrideRemainingDuration() { return overrideRemainingDuration; } /** * Sets the value of the overrideRemainingDuration property. * * @param value * allowed object is * {@link Double } * */ public void setOverrideRemainingDuration(Double value) { this.overrideRemainingDuration = value; } /** * Gets the value of the overrideRemainingFinishDate property. * * @return * possible object is * {@link String } * */ public Date getOverrideRemainingFinishDate() { return overrideRemainingFinishDate; } /** * Sets the value of the overrideRemainingFinishDate property. * * @param value * allowed object is * {@link String } * */ public void setOverrideRemainingFinishDate(Date value) { this.overrideRemainingFinishDate = value; } /** * Gets the value of the overrideRemainingUnits property. * * @return * possible object is * {@link Double } * */ public Double getOverrideRemainingUnits() { return overrideRemainingUnits; } /** * Sets the value of the overrideRemainingUnits property. * * @param value * allowed object is * {@link Double } * */ public void setOverrideRemainingUnits(Double value) { this.overrideRemainingUnits = value; } /** * Gets the value of the pendingActualFinishDate property. * * @return * possible object is * {@link String } * */ public Date getPendingActualFinishDate() { return pendingActualFinishDate; } /** * Sets the value of the pendingActualFinishDate property. * * @param value * allowed object is * {@link String } * */ public void setPendingActualFinishDate(Date value) { this.pendingActualFinishDate = value; } /** * Gets the value of the pendingActualStartDate property. * * @return * possible object is * {@link String } * */ public Date getPendingActualStartDate() { return pendingActualStartDate; } /** * Sets the value of the pendingActualStartDate property. * * @param value * allowed object is * {@link String } * */ public void setPendingActualStartDate(Date value) { this.pendingActualStartDate = value; } /** * Gets the value of the pendingActualUnits property. * * @return * possible object is * {@link Double } * */ public Double getPendingActualUnits() { return pendingActualUnits; } /** * Sets the value of the pendingActualUnits property. * * @param value * allowed object is * {@link Double } * */ public void setPendingActualUnits(Double value) { this.pendingActualUnits = value; } /** * Gets the value of the pendingRemainingDuration property. * * @return * possible object is * {@link Double } * */ public Double getPendingRemainingDuration() { return pendingRemainingDuration; } /** * Sets the value of the pendingRemainingDuration property. * * @param value * allowed object is * {@link Double } * */ public void setPendingRemainingDuration(Double value) { this.pendingRemainingDuration = value; } /** * Gets the value of the pendingRemainingFinishDate property. * * @return * possible object is * {@link String } * */ public Date getPendingRemainingFinishDate() { return pendingRemainingFinishDate; } /** * Sets the value of the pendingRemainingFinishDate property. * * @param value * allowed object is * {@link String } * */ public void setPendingRemainingFinishDate(Date value) { this.pendingRemainingFinishDate = value; } /** * Gets the value of the pendingRemainingUnits property. * * @return * possible object is * {@link Double } * */ public Double getPendingRemainingUnits() { return pendingRemainingUnits; } /** * Sets the value of the pendingRemainingUnits property. * * @param value * allowed object is * {@link Double } * */ public void setPendingRemainingUnits(Double value) { this.pendingRemainingUnits = value; } /** * Gets the value of the projectObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getProjectObjectId() { return projectObjectId; } /** * Sets the value of the projectObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setProjectObjectId(Integer value) { this.projectObjectId = value; } /** * Gets the value of the requestUserObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getRequestUserObjectId() { return requestUserObjectId; } /** * Sets the value of the requestUserObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setRequestUserObjectId(Integer value) { this.requestUserObjectId = value; } /** * Gets the value of the resourceAssignmentObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getResourceAssignmentObjectId() { return resourceAssignmentObjectId; } /** * Sets the value of the resourceAssignmentObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setResourceAssignmentObjectId(Integer value) { this.resourceAssignmentObjectId = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } }