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.XmlSeeAlso;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * <p>Java class for FilterQueryType complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType name="FilterQueryType">
25   *   &lt;complexContent>
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27   *       &lt;sequence>
28   *         &lt;element name="PrimaryFilter" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}FilterType" minOccurs="0"/>
29   *       &lt;/sequence>
30   *     &lt;/restriction>
31   *   &lt;/complexContent>
32   * &lt;/complexType>
33   * </pre>
34   * 
35   * 
36   */
37  @XmlAccessorType(XmlAccessType.FIELD)
38  @XmlType(name = "FilterQueryType", propOrder = {
39      "primaryFilter"
40  })
41  @XmlSeeAlso({
42      RegistryObjectQueryType.class,
43      BranchType.class
44  })
45  public abstract class FilterQueryType {
46  
47      @XmlElement(name = "PrimaryFilter")
48      protected FilterType primaryFilter;
49  
50      /**
51       * Gets the value of the primaryFilter property.
52       * 
53       * @return
54       *     possible object is
55       *     {@link FilterType }
56       *     
57       */
58      public FilterType getPrimaryFilter() {
59          return primaryFilter;
60      }
61  
62      /**
63       * Sets the value of the primaryFilter property.
64       * 
65       * @param value
66       *     allowed object is
67       *     {@link FilterType }
68       *     
69       */
70      public void setPrimaryFilter(FilterType value) {
71          this.primaryFilter = value;
72      }
73  
74  }