// // 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_masterType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="query_masterType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="query_master_id" type="{http://i2b2.mgh.harvard.edu/querytool}query_master_idType"/> * <element name="name" type="{http://i2b2.mgh.harvard.edu/querytool}nameType"/> * <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="create_date" type="{http://i2b2.mgh.harvard.edu/querytool}create_dateType"/> * <element name="delete_date" type="{http://i2b2.mgh.harvard.edu/querytool}delete_dateType"/> * <element name="request_xml" type="{http://i2b2.mgh.harvard.edu/querytool}request_xmlType"/> * <element name="generated_sql" type="{http://i2b2.mgh.harvard.edu/querytool}generated_sqlType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "query_masterType", propOrder = { "queryMasterId", "name", "userId", "groupId", "createDate", "deleteDate", "requestXml", "generatedSql" }) public class QueryMasterType { @XmlElement(name = "query_master_id") protected int queryMasterId; @XmlElement(required = true) protected String name; @XmlElement(name = "user_id", required = true) protected String userId; @XmlElement(name = "group_id", required = true) protected String groupId; @XmlElement(name = "create_date", required = true) protected XMLGregorianCalendar createDate; @XmlElement(name = "delete_date", required = true) protected XMLGregorianCalendar deleteDate; @XmlElement(name = "request_xml", required = true) protected RequestXmlType requestXml; @XmlElement(name = "generated_sql", required = true) protected String generatedSql; /** * 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 name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = 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 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 deleteDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDeleteDate() { return deleteDate; } /** * Sets the value of the deleteDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDeleteDate(XMLGregorianCalendar value) { this.deleteDate = value; } /** * Gets the value of the requestXml property. * * @return * possible object is * {@link RequestXmlType } * */ public RequestXmlType getRequestXml() { return requestXml; } /** * Sets the value of the requestXml property. * * @param value * allowed object is * {@link RequestXmlType } * */ public void setRequestXml(RequestXmlType value) { this.requestXml = value; } /** * Gets the value of the generatedSql property. * * @return * possible object is * {@link String } * */ public String getGeneratedSql() { return generatedSql; } /** * Sets the value of the generatedSql property. * * @param value * allowed object is * {@link String } * */ public void setGeneratedSql(String value) { this.generatedSql = value; } }