View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.9-03/31/2009 04:14 PM(snajper)-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2009.04.30 at 06:20:20 PM CEST 
6   //
7   
8   
9   package org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rim;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlElement;
14  import javax.xml.bind.annotation.XmlType;
15  
16  
17  /**
18   * 
19   *       A registry query.
20   *       A QueryExpression child element is not required when invoking a stored query.
21   *       
22   * 
23   * <p>Java class for AdhocQueryType complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType name="AdhocQueryType">
29   *   &lt;complexContent>
30   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}RegistryObjectType">
31   *       &lt;sequence>
32   *         &lt;element ref="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}QueryExpression" minOccurs="0"/>
33   *       &lt;/sequence>
34   *     &lt;/extension>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "AdhocQueryType", propOrder = {
43      "queryExpression"
44  })
45  public class AdhocQueryType
46      extends RegistryObjectType
47  {
48  
49      @XmlElement(name = "QueryExpression")
50      protected QueryExpressionType queryExpression;
51  
52      /**
53       * Gets the value of the queryExpression property.
54       * 
55       * @return
56       *     possible object is
57       *     {@link QueryExpressionType }
58       *     
59       */
60      public QueryExpressionType getQueryExpression() {
61          return queryExpression;
62      }
63  
64      /**
65       * Sets the value of the queryExpression property.
66       * 
67       * @param value
68       *     allowed object is
69       *     {@link QueryExpressionType }
70       *     
71       */
72      public void setQueryExpression(QueryExpressionType value) {
73          this.queryExpression = value;
74      }
75  
76  }