// // 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; /** * <p>Java class for query_definition_requestType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="query_definition_requestType"> * <complexContent> * <extension base="{http://i2b2.mgh.harvard.edu/querytool}requestType"> * <sequence> * <element name="query_definition" type="{http://i2b2.mgh.harvard.edu/querytool}query_definitionType"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "query_definition_requestType", propOrder = { "queryDefinition" }) public class QueryDefinitionRequestType extends RequestType { @XmlElement(name = "query_definition", required = true) protected QueryDefinitionType queryDefinition; /** * Gets the value of the queryDefinition property. * * @return * possible object is * {@link QueryDefinitionType } * */ public QueryDefinitionType getQueryDefinition() { return queryDefinition; } /** * Sets the value of the queryDefinition property. * * @param value * allowed object is * {@link QueryDefinitionType } * */ public void setQueryDefinition(QueryDefinitionType value) { this.queryDefinition = value; } }