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.query;
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   * <p>Java class for ExternalIdentifierQueryType complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="ExternalIdentifierQueryType">
24   *   &lt;complexContent>
25   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}RegistryObjectQueryType">
26   *       &lt;sequence>
27   *         &lt;element ref="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}RegistryObjectQuery" minOccurs="0"/>
28   *         &lt;element name="IdentificationSchemeQuery" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}ClassificationSchemeQueryType" minOccurs="0"/>
29   *       &lt;/sequence>
30   *     &lt;/extension>
31   *   &lt;/complexContent>
32   * &lt;/complexType>
33   * </pre>
34   * 
35   * 
36   */
37  @XmlAccessorType(XmlAccessType.FIELD)
38  @XmlType(name = "ExternalIdentifierQueryType", propOrder = {
39      "registryObjectQuery",
40      "identificationSchemeQuery"
41  })
42  public class ExternalIdentifierQueryType
43      extends RegistryObjectQueryType
44  {
45  
46      @XmlElement(name = "RegistryObjectQuery")
47      protected RegistryObjectQueryType registryObjectQuery;
48      @XmlElement(name = "IdentificationSchemeQuery")
49      protected ClassificationSchemeQueryType identificationSchemeQuery;
50  
51      /**
52       * Gets the value of the registryObjectQuery property.
53       * 
54       * @return
55       *     possible object is
56       *     {@link RegistryObjectQueryType }
57       *     
58       */
59      public RegistryObjectQueryType getRegistryObjectQuery() {
60          return registryObjectQuery;
61      }
62  
63      /**
64       * Sets the value of the registryObjectQuery property.
65       * 
66       * @param value
67       *     allowed object is
68       *     {@link RegistryObjectQueryType }
69       *     
70       */
71      public void setRegistryObjectQuery(RegistryObjectQueryType value) {
72          this.registryObjectQuery = value;
73      }
74  
75      /**
76       * Gets the value of the identificationSchemeQuery property.
77       * 
78       * @return
79       *     possible object is
80       *     {@link ClassificationSchemeQueryType }
81       *     
82       */
83      public ClassificationSchemeQueryType getIdentificationSchemeQuery() {
84          return identificationSchemeQuery;
85      }
86  
87      /**
88       * Sets the value of the identificationSchemeQuery property.
89       * 
90       * @param value
91       *     allowed object is
92       *     {@link ClassificationSchemeQueryType }
93       *     
94       */
95      public void setIdentificationSchemeQuery(ClassificationSchemeQueryType value) {
96          this.identificationSchemeQuery = value;
97      }
98  
99  }