// // 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 ProjectCodeAssignmentType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ProjectCodeAssignmentType"> * <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="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="ProjectCodeDescription" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="100"/> * </restriction> * </simpleType> * </element> * <element name="ProjectCodeObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="ProjectCodeTypeName" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="40"/> * </restriction> * </simpleType> * </element> * <element name="ProjectCodeTypeObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="ProjectCodeValue" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="20"/> * </restriction> * </simpleType> * </element> * <element name="ProjectId" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="20"/> * </restriction> * </simpleType> * </element> * <element name="ProjectName" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="100"/> * </restriction> * </simpleType> * </element> * <element name="ProjectObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProjectCodeAssignmentType", propOrder = { "createDate", "createUser", "isBaseline", "isTemplate", "lastUpdateDate", "lastUpdateUser", "projectCodeDescription", "projectCodeObjectId", "projectCodeTypeName", "projectCodeTypeObjectId", "projectCodeValue", "projectId", "projectName", "projectObjectId" }) public class ProjectCodeAssignmentType { @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 = "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 = "ProjectCodeDescription") protected String projectCodeDescription; @XmlElement(name = "ProjectCodeObjectId") protected Integer projectCodeObjectId; @XmlElement(name = "ProjectCodeTypeName") protected String projectCodeTypeName; @XmlElement(name = "ProjectCodeTypeObjectId", nillable = true) protected Integer projectCodeTypeObjectId; @XmlElement(name = "ProjectCodeValue") protected String projectCodeValue; @XmlElement(name = "ProjectId") protected String projectId; @XmlElement(name = "ProjectName") protected String projectName; @XmlElement(name = "ProjectObjectId") protected Integer projectObjectId; /** * 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 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 projectCodeDescription property. * * @return * possible object is * {@link String } * */ public String getProjectCodeDescription() { return projectCodeDescription; } /** * Sets the value of the projectCodeDescription property. * * @param value * allowed object is * {@link String } * */ public void setProjectCodeDescription(String value) { this.projectCodeDescription = value; } /** * Gets the value of the projectCodeObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getProjectCodeObjectId() { return projectCodeObjectId; } /** * Sets the value of the projectCodeObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setProjectCodeObjectId(Integer value) { this.projectCodeObjectId = value; } /** * Gets the value of the projectCodeTypeName property. * * @return * possible object is * {@link String } * */ public String getProjectCodeTypeName() { return projectCodeTypeName; } /** * Sets the value of the projectCodeTypeName property. * * @param value * allowed object is * {@link String } * */ public void setProjectCodeTypeName(String value) { this.projectCodeTypeName = value; } /** * Gets the value of the projectCodeTypeObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getProjectCodeTypeObjectId() { return projectCodeTypeObjectId; } /** * Sets the value of the projectCodeTypeObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setProjectCodeTypeObjectId(Integer value) { this.projectCodeTypeObjectId = value; } /** * Gets the value of the projectCodeValue property. * * @return * possible object is * {@link String } * */ public String getProjectCodeValue() { return projectCodeValue; } /** * Sets the value of the projectCodeValue property. * * @param value * allowed object is * {@link String } * */ public void setProjectCodeValue(String value) { this.projectCodeValue = 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 projectName property. * * @return * possible object is * {@link String } * */ public String getProjectName() { return projectName; } /** * Sets the value of the projectName property. * * @param value * allowed object is * {@link String } * */ public void setProjectName(String value) { this.projectName = 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; } }