// // 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_instanceType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="query_instanceType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="query_instance_id" type="{http://i2b2.mgh.harvard.edu/querytool}query_instance_idType"/> * <element name="query_master_id" type="{http://i2b2.mgh.harvard.edu/querytool}query_master_idType"/> * <element name="user_id" type="{http://i2b2.mgh.harvard.edu/querytool}user_idType"/> * <element name="group_id" type="{http://i2b2.mgh.harvard.edu/querytool}group_idType"/> * <element name="batch_mode" type="{http://i2b2.mgh.harvard.edu/querytool}batch_modeType"/> * <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_instanceType", propOrder = { "queryInstanceId", "queryMasterId", "userId", "groupId", "batchMode", "startDate", "endDate", "queryStatusType" }) public class QueryInstanceType { @XmlElement(name = "query_instance_id") protected int queryInstanceId; @XmlElement(name = "query_master_id") protected int queryMasterId; @XmlElement(name = "user_id", required = true) protected String userId; @XmlElement(name = "group_id", required = true) protected String groupId; @XmlElement(name = "batch_mode", required = true) protected String batchMode; @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 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 queryMasterId property. * */ public int getQueryMasterId() { return queryMasterId; } /** * Sets the value of the queryMasterId property. * */ public void setQueryMasterId(int value) { this.queryMasterId = value; } /** * Gets the value of the userId property. * * @return * possible object is * {@link String } * */ public String getUserId() { return userId; } /** * Sets the value of the userId property. * * @param value * allowed object is * {@link String } * */ public void setUserId(String value) { this.userId = value; } /** * Gets the value of the groupId property. * * @return * possible object is * {@link String } * */ public String getGroupId() { return groupId; } /** * Sets the value of the groupId property. * * @param value * allowed object is * {@link String } * */ public void setGroupId(String value) { this.groupId = value; } /** * Gets the value of the batchMode property. * * @return * possible object is * {@link String } * */ public String getBatchMode() { return batchMode; } /** * Sets the value of the batchMode property. * * @param value * allowed object is * {@link String } * */ public void setBatchMode(String value) { this.batchMode = 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; } }