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 java.util.ArrayList;
12  import java.util.List;
13  import javax.xml.bind.annotation.XmlAccessType;
14  import javax.xml.bind.annotation.XmlAccessorType;
15  import javax.xml.bind.annotation.XmlElement;
16  import javax.xml.bind.annotation.XmlSeeAlso;
17  import javax.xml.bind.annotation.XmlType;
18  
19  
20  /**
21   * <p>Java class for PersonQueryType complex type.
22   * 
23   * <p>The following schema fragment specifies the expected content contained within this class.
24   * 
25   * <pre>
26   * &lt;complexType name="PersonQueryType">
27   *   &lt;complexContent>
28   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}RegistryObjectQueryType">
29   *       &lt;sequence>
30   *         &lt;element name="AddressFilter" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}FilterType" maxOccurs="unbounded" minOccurs="0"/>
31   *         &lt;element name="PersonNameFilter" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}FilterType" minOccurs="0"/>
32   *         &lt;element name="TelephoneNumberFilter" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}FilterType" maxOccurs="unbounded" minOccurs="0"/>
33   *         &lt;element name="EmailAddressFilter" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}FilterType" maxOccurs="unbounded" minOccurs="0"/>
34   *       &lt;/sequence>
35   *     &lt;/extension>
36   *   &lt;/complexContent>
37   * &lt;/complexType>
38   * </pre>
39   * 
40   * 
41   */
42  @XmlAccessorType(XmlAccessType.FIELD)
43  @XmlType(name = "PersonQueryType", propOrder = {
44      "addressFilter",
45      "personNameFilter",
46      "telephoneNumberFilter",
47      "emailAddressFilter"
48  })
49  @XmlSeeAlso({
50      UserQueryType.class
51  })
52  public class PersonQueryType
53      extends RegistryObjectQueryType
54  {
55  
56      @XmlElement(name = "AddressFilter")
57      protected List<FilterType> addressFilter;
58      @XmlElement(name = "PersonNameFilter")
59      protected FilterType personNameFilter;
60      @XmlElement(name = "TelephoneNumberFilter")
61      protected List<FilterType> telephoneNumberFilter;
62      @XmlElement(name = "EmailAddressFilter")
63      protected List<FilterType> emailAddressFilter;
64  
65      /**
66       * Gets the value of the addressFilter property.
67       * 
68       * <p>
69       * This accessor method returns a reference to the live list,
70       * not a snapshot. Therefore any modification you make to the
71       * returned list will be present inside the JAXB object.
72       * This is why there is not a <CODE>set</CODE> method for the addressFilter property.
73       * 
74       * <p>
75       * For example, to add a new item, do as follows:
76       * <pre>
77       *    getAddressFilter().add(newItem);
78       * </pre>
79       * 
80       * 
81       * <p>
82       * Objects of the following type(s) are allowed in the list
83       * {@link FilterType }
84       * 
85       * 
86       */
87      public List<FilterType> getAddressFilter() {
88          if (addressFilter == null) {
89              addressFilter = new ArrayList<>();
90          }
91          return this.addressFilter;
92      }
93  
94      /**
95       * Gets the value of the personNameFilter property.
96       * 
97       * @return
98       *     possible object is
99       *     {@link FilterType }
100      *     
101      */
102     public FilterType getPersonNameFilter() {
103         return personNameFilter;
104     }
105 
106     /**
107      * Sets the value of the personNameFilter property.
108      * 
109      * @param value
110      *     allowed object is
111      *     {@link FilterType }
112      *     
113      */
114     public void setPersonNameFilter(FilterType value) {
115         this.personNameFilter = value;
116     }
117 
118     /**
119      * Gets the value of the telephoneNumberFilter property.
120      * 
121      * <p>
122      * This accessor method returns a reference to the live list,
123      * not a snapshot. Therefore any modification you make to the
124      * returned list will be present inside the JAXB object.
125      * This is why there is not a <CODE>set</CODE> method for the telephoneNumberFilter property.
126      * 
127      * <p>
128      * For example, to add a new item, do as follows:
129      * <pre>
130      *    getTelephoneNumberFilter().add(newItem);
131      * </pre>
132      * 
133      * 
134      * <p>
135      * Objects of the following type(s) are allowed in the list
136      * {@link FilterType }
137      * 
138      * 
139      */
140     public List<FilterType> getTelephoneNumberFilter() {
141         if (telephoneNumberFilter == null) {
142             telephoneNumberFilter = new ArrayList<>();
143         }
144         return this.telephoneNumberFilter;
145     }
146 
147     /**
148      * Gets the value of the emailAddressFilter property.
149      * 
150      * <p>
151      * This accessor method returns a reference to the live list,
152      * not a snapshot. Therefore any modification you make to the
153      * returned list will be present inside the JAXB object.
154      * This is why there is not a <CODE>set</CODE> method for the emailAddressFilter property.
155      * 
156      * <p>
157      * For example, to add a new item, do as follows:
158      * <pre>
159      *    getEmailAddressFilter().add(newItem);
160      * </pre>
161      * 
162      * 
163      * <p>
164      * Objects of the following type(s) are allowed in the list
165      * {@link FilterType }
166      * 
167      * 
168      */
169     public List<FilterType> getEmailAddressFilter() {
170         if (emailAddressFilter == null) {
171             emailAddressFilter = new ArrayList<>();
172         }
173         return this.emailAddressFilter;
174     }
175 
176 }