// // 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 ProjectResourceType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ProjectResourceType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="CommittedFlag" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <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="FinishDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="IsBaseline" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="IsTemplate" type="{http://www.w3.org/2001/XMLSchema}boolean" 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="LifeOfProjectFlag" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="ObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="ProjectId" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="20"/> * </restriction> * </simpleType> * </element> * <element name="ProjectObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="ProjectResourceCategoryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ProjectResourceCategoryObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="ResourceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="ResourceObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="RoleName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="RoleObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="StartDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> * <element name="Status" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value=""/> * <enumeration value="Planned"/> * <enumeration value="Active"/> * <enumeration value="Inactive"/> * <enumeration value="What-If"/> * <enumeration value="Requested"/> * <enumeration value="Template"/> * </restriction> * </simpleType> * </element> * <element name="WBSCode" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="20"/> * </restriction> * </simpleType> * </element> * <element name="WBSObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="ResourceRequest" type="{http://xmlns.oracle.com/Primavera/P6/V8.3/API/BusinessObjects}ResourceRequestType" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProjectResourceType", propOrder = { "committedFlag", "createDate", "createUser", "finishDate", "isBaseline", "isTemplate", "lastUpdateDate", "lastUpdateUser", "lifeOfProjectFlag", "objectId", "projectId", "projectObjectId", "projectResourceCategoryName", "projectResourceCategoryObjectId", "resourceName", "resourceObjectId", "roleName", "roleObjectId", "startDate", "status", "wbsCode", "wbsObjectId", "resourceRequest" }) public class ProjectResourceType { @XmlElement(name = "CommittedFlag", nillable = true) protected Boolean committedFlag; @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 = "FinishDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date finishDate; @XmlElement(name = "IsBaseline") protected Boolean isBaseline; @XmlElement(name = "IsTemplate") protected Boolean isTemplate; @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 = "LifeOfProjectFlag") protected Boolean lifeOfProjectFlag; @XmlElement(name = "ObjectId") protected Integer objectId; @XmlElement(name = "ProjectId") protected String projectId; @XmlElement(name = "ProjectObjectId") protected Integer projectObjectId; @XmlElement(name = "ProjectResourceCategoryName") protected String projectResourceCategoryName; @XmlElement(name = "ProjectResourceCategoryObjectId", nillable = true) protected Integer projectResourceCategoryObjectId; @XmlElement(name = "ResourceName") protected String resourceName; @XmlElement(name = "ResourceObjectId", nillable = true) protected Integer resourceObjectId; @XmlElement(name = "RoleName") protected String roleName; @XmlElement(name = "RoleObjectId", nillable = true) protected Integer roleObjectId; @XmlElement(name = "StartDate", type = String.class, nillable = true) @XmlJavaTypeAdapter(Adapter1.class) @XmlSchemaType(name = "dateTime") protected Date startDate; @XmlElement(name = "Status") protected String status; @XmlElement(name = "WBSCode") protected String wbsCode; @XmlElement(name = "WBSObjectId", nillable = true) protected Integer wbsObjectId; @XmlElement(name = "ResourceRequest", nillable = true) protected ResourceRequestType resourceRequest; /** * Gets the value of the committedFlag property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCommittedFlag() { return committedFlag; } /** * Sets the value of the committedFlag property. * * @param value * allowed object is * {@link Boolean } * */ public void setCommittedFlag(Boolean value) { this.committedFlag = value; } /** * 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 finishDate property. * * @return * possible object is * {@link String } * */ public Date getFinishDate() { return finishDate; } /** * Sets the value of the finishDate property. * * @param value * allowed object is * {@link String } * */ public void setFinishDate(Date value) { this.finishDate = value; } /** * Gets the value of the isBaseline property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsBaseline() { return isBaseline; } /** * Sets the value of the isBaseline property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsBaseline(Boolean value) { this.isBaseline = value; } /** * Gets the value of the isTemplate property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsTemplate() { return isTemplate; } /** * Sets the value of the isTemplate property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsTemplate(Boolean value) { this.isTemplate = 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 lifeOfProjectFlag property. * * @return * possible object is * {@link Boolean } * */ public Boolean isLifeOfProjectFlag() { return lifeOfProjectFlag; } /** * Sets the value of the lifeOfProjectFlag property. * * @param value * allowed object is * {@link Boolean } * */ public void setLifeOfProjectFlag(Boolean value) { this.lifeOfProjectFlag = 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 projectId property. * * @return * possible object is * {@link String } * */ public String getProjectId() { return projectId; } /** * Sets the value of the projectId property. * * @param value * allowed object is * {@link String } * */ public void setProjectId(String value) { this.projectId = 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 projectResourceCategoryName property. * * @return * possible object is * {@link String } * */ public String getProjectResourceCategoryName() { return projectResourceCategoryName; } /** * Sets the value of the projectResourceCategoryName property. * * @param value * allowed object is * {@link String } * */ public void setProjectResourceCategoryName(String value) { this.projectResourceCategoryName = value; } /** * Gets the value of the projectResourceCategoryObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getProjectResourceCategoryObjectId() { return projectResourceCategoryObjectId; } /** * Sets the value of the projectResourceCategoryObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setProjectResourceCategoryObjectId(Integer value) { this.projectResourceCategoryObjectId = 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 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; } /** * Gets the value of the startDate property. * * @return * possible object is * {@link String } * */ public Date getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link String } * */ public void setStartDate(Date value) { this.startDate = 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; } /** * Gets the value of the wbsCode property. * * @return * possible object is * {@link String } * */ public String getWBSCode() { return wbsCode; } /** * Sets the value of the wbsCode property. * * @param value * allowed object is * {@link String } * */ public void setWBSCode(String value) { this.wbsCode = value; } /** * Gets the value of the wbsObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getWBSObjectId() { return wbsObjectId; } /** * Sets the value of the wbsObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setWBSObjectId(Integer value) { this.wbsObjectId = value; } /** * Gets the value of the resourceRequest property. * * @return * possible object is * {@link ResourceRequestType } * */ public ResourceRequestType getResourceRequest() { return resourceRequest; } /** * Sets the value of the resourceRequest property. * * @param value * allowed object is * {@link ResourceRequestType } * */ public void setResourceRequest(ResourceRequestType value) { this.resourceRequest = value; } }