// // 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 query_result_instanceType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="query_result_instanceType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="result_instance_id" type="{http://i2b2.mgh.harvard.edu/querytool}result_instance_idType"/> * <element name="query_instance_id" type="{http://i2b2.mgh.harvard.edu/querytool}query_instance_idType"/> * <element name="query_result_type" type="{http://i2b2.mgh.harvard.edu/querytool}query_result_typeType"/> * <element name="set_size" type="{http://i2b2.mgh.harvard.edu/querytool}set_sizeType"/> * <element name="start_date" type="{http://i2b2.mgh.harvard.edu/querytool}start_dateType"/> * <element name="end_date" type="{http://i2b2.mgh.harvard.edu/querytool}end_dateType"/> * <element name="query_status_type" type="{http://i2b2.mgh.harvard.edu/querytool}query_status_typeType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "query_result_instanceType", propOrder = { "resultInstanceId", "queryInstanceId", "queryResultType", "setSize", "startDate", "endDate", "queryStatusType" }) public class QueryResultInstanceType { @XmlElement(name = "result_instance_id") protected int resultInstanceId; @XmlElement(name = "query_instance_id") protected int queryInstanceId; @XmlElement(name = "query_result_type", required = true) protected QueryResultTypeType queryResultType; @XmlElement(name = "set_size") protected int setSize; @XmlElement(name = "start_date", required = true) protected XMLGregorianCalendar startDate; @XmlElement(name = "end_date", required = true) protected XMLGregorianCalendar endDate; @XmlElement(name = "query_status_type", required = true) protected QueryStatusTypeType queryStatusType; /** * Gets the value of the resultInstanceId property. * */ public int getResultInstanceId() { return resultInstanceId; } /** * Sets the value of the resultInstanceId property. * */ public void setResultInstanceId(int value) { this.resultInstanceId = value; } /** * Gets the value of the queryInstanceId property. * */ public int getQueryInstanceId() { return queryInstanceId; } /** * Sets the value of the queryInstanceId property. * */ public void setQueryInstanceId(int value) { this.queryInstanceId = value; } /** * Gets the value of the queryResultType property. * * @return * possible object is * {@link QueryResultTypeType } * */ public QueryResultTypeType getQueryResultType() { return queryResultType; } /** * Sets the value of the queryResultType property. * * @param value * allowed object is * {@link QueryResultTypeType } * */ public void setQueryResultType(QueryResultTypeType value) { this.queryResultType = value; } /** * Gets the value of the setSize property. * */ public int getSetSize() { return setSize; } /** * Sets the value of the setSize property. * */ public void setSetSize(int value) { this.setSize = value; } /** * Gets the value of the startDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartDate(XMLGregorianCalendar value) { this.startDate = value; } /** * Gets the value of the endDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEndDate() { return endDate; } /** * Sets the value of the endDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setEndDate(XMLGregorianCalendar value) { this.endDate = value; } /** * Gets the value of the queryStatusType property. * * @return * possible object is * {@link QueryStatusTypeType } * */ public QueryStatusTypeType getQueryStatusType() { return queryStatusType; } /** * Sets the value of the queryStatusType property. * * @param value * allowed object is * {@link QueryStatusTypeType } * */ public void setQueryStatusType(QueryStatusTypeType value) { this.queryStatusType = value; } }