// // 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 EPSFundingType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="EPSFundingType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Amount" type="{http://www.w3.org/2001/XMLSchema}double" 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="EPSId" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="20"/> * </restriction> * </simpleType> * </element> * <element name="EPSName" minOccurs="0"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <maxLength value="100"/> * </restriction> * </simpleType> * </element> * <element name="EPSObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="FundShare" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> * <element name="FundingSourceObjectId" type="{http://www.w3.org/2001/XMLSchema}int" 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="ObjectId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EPSFundingType", propOrder = { "amount", "createDate", "createUser", "epsId", "epsName", "epsObjectId", "fundShare", "fundingSourceObjectId", "lastUpdateDate", "lastUpdateUser", "objectId" }) public class EPSFundingType { @XmlElement(name = "Amount", nillable = true) protected Double amount; @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 = "EPSId") protected String epsId; @XmlElement(name = "EPSName") protected String epsName; @XmlElement(name = "EPSObjectId") protected Integer epsObjectId; @XmlElement(name = "FundShare", nillable = true) protected Double fundShare; @XmlElement(name = "FundingSourceObjectId") protected Integer fundingSourceObjectId; @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; /** * Gets the value of the amount property. * * @return * possible object is * {@link Double } * */ public Double getAmount() { return amount; } /** * Sets the value of the amount property. * * @param value * allowed object is * {@link Double } * */ public void setAmount(Double value) { this.amount = 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 epsId property. * * @return * possible object is * {@link String } * */ public String getEPSId() { return epsId; } /** * Sets the value of the epsId property. * * @param value * allowed object is * {@link String } * */ public void setEPSId(String value) { this.epsId = value; } /** * Gets the value of the epsName property. * * @return * possible object is * {@link String } * */ public String getEPSName() { return epsName; } /** * Sets the value of the epsName property. * * @param value * allowed object is * {@link String } * */ public void setEPSName(String value) { this.epsName = value; } /** * Gets the value of the epsObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getEPSObjectId() { return epsObjectId; } /** * Sets the value of the epsObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setEPSObjectId(Integer value) { this.epsObjectId = value; } /** * Gets the value of the fundShare property. * * @return * possible object is * {@link Double } * */ public Double getFundShare() { return fundShare; } /** * Sets the value of the fundShare property. * * @param value * allowed object is * {@link Double } * */ public void setFundShare(Double value) { this.fundShare = value; } /** * Gets the value of the fundingSourceObjectId property. * * @return * possible object is * {@link Integer } * */ public Integer getFundingSourceObjectId() { return fundingSourceObjectId; } /** * Sets the value of the fundingSourceObjectId property. * * @param value * allowed object is * {@link Integer } * */ public void setFundingSourceObjectId(Integer value) { this.fundingSourceObjectId = 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; } }