// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.3-b01-fcs // 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: 2006.10.27 at 11:21:39 AM EDT // package jaxb; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for headerType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="headerType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="user" type="{http://i2b2.mgh.harvard.edu/querytool}userType"/> * <element name="data_source" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="patient_set_limit" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="estimated_time" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="create_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="submit_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="complete_date" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> * <element name="request_type" type="{http://i2b2.mgh.harvard.edu/querytool}request_typeType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "headerType", propOrder = { "user", "dataSource", "patientSetLimit", "estimatedTime", "createDate", "submitDate", "completeDate", "requestType" }) public class HeaderType { @XmlElement(required = true) protected UserType user; @XmlElement(name = "data_source", required = true) protected String dataSource; @XmlElement(name = "patient_set_limit") protected int patientSetLimit; @XmlElement(name = "estimated_time") protected int estimatedTime; @XmlElement(name = "create_date", required = true) protected XMLGregorianCalendar createDate; @XmlElement(name = "submit_date", required = true) protected XMLGregorianCalendar submitDate; @XmlElement(name = "complete_date", required = true) protected XMLGregorianCalendar completeDate; @XmlElement(name = "request_type", required = true) protected RequestTypeType requestType; /** * Gets the value of the user property. * * @return * possible object is * {@link UserType } * */ public UserType getUser() { return user; } /** * Sets the value of the user property. * * @param value * allowed object is * {@link UserType } * */ public void setUser(UserType value) { this.user = value; } /** * Gets the value of the dataSource property. * * @return * possible object is * {@link String } * */ public String getDataSource() { return dataSource; } /** * Sets the value of the dataSource property. * * @param value * allowed object is * {@link String } * */ public void setDataSource(String value) { this.dataSource = value; } /** * Gets the value of the patientSetLimit property. * */ public int getPatientSetLimit() { return patientSetLimit; } /** * Sets the value of the patientSetLimit property. * */ public void setPatientSetLimit(int value) { this.patientSetLimit = value; } /** * Gets the value of the estimatedTime property. * */ public int getEstimatedTime() { return estimatedTime; } /** * Sets the value of the estimatedTime property. * */ public void setEstimatedTime(int value) { this.estimatedTime = value; } /** * Gets the value of the createDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCreateDate() { return createDate; } /** * Sets the value of the createDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCreateDate(XMLGregorianCalendar value) { this.createDate = value; } /** * Gets the value of the submitDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getSubmitDate() { return submitDate; } /** * Sets the value of the submitDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setSubmitDate(XMLGregorianCalendar value) { this.submitDate = value; } /** * Gets the value of the completeDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCompleteDate() { return completeDate; } /** * Sets the value of the completeDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCompleteDate(XMLGregorianCalendar value) { this.completeDate = value; } /** * Gets the value of the requestType property. * * @return * possible object is * {@link RequestTypeType } * */ public RequestTypeType getRequestType() { return requestType; } /** * Sets the value of the requestType property. * * @param value * allowed object is * {@link RequestTypeType } * */ public void setRequestType(RequestTypeType value) { this.requestType = value; } }