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.XmlType;
17  
18  
19  /**
20   * <p>Java class for AuditableEventQueryType complex type.
21   * 
22   * <p>The following schema fragment specifies the expected content contained within this class.
23   * 
24   * <pre>
25   * &lt;complexType name="AuditableEventQueryType">
26   *   &lt;complexContent>
27   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}RegistryObjectQueryType">
28   *       &lt;sequence>
29   *         &lt;element name="AffectedObjectQuery" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}RegistryObjectQueryType" maxOccurs="unbounded" minOccurs="0"/>
30   *         &lt;element name="EventTypeQuery" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}ClassificationNodeQueryType" minOccurs="0"/>
31   *         &lt;element name="UserQuery" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}UserQueryType" minOccurs="0"/>
32   *       &lt;/sequence>
33   *     &lt;/extension>
34   *   &lt;/complexContent>
35   * &lt;/complexType>
36   * </pre>
37   * 
38   * 
39   */
40  @XmlAccessorType(XmlAccessType.FIELD)
41  @XmlType(name = "AuditableEventQueryType", propOrder = {
42      "affectedObjectQuery",
43      "eventTypeQuery",
44      "userQuery"
45  })
46  public class AuditableEventQueryType
47      extends RegistryObjectQueryType
48  {
49  
50      @XmlElement(name = "AffectedObjectQuery")
51      protected List<RegistryObjectQueryType> affectedObjectQuery;
52      @XmlElement(name = "EventTypeQuery")
53      protected ClassificationNodeQueryType eventTypeQuery;
54      @XmlElement(name = "UserQuery")
55      protected UserQueryType userQuery;
56  
57      /**
58       * Gets the value of the affectedObjectQuery property.
59       * 
60       * <p>
61       * This accessor method returns a reference to the live list,
62       * not a snapshot. Therefore any modification you make to the
63       * returned list will be present inside the JAXB object.
64       * This is why there is not a <CODE>set</CODE> method for the affectedObjectQuery property.
65       * 
66       * <p>
67       * For example, to add a new item, do as follows:
68       * <pre>
69       *    getAffectedObjectQuery().add(newItem);
70       * </pre>
71       * 
72       * 
73       * <p>
74       * Objects of the following type(s) are allowed in the list
75       * {@link RegistryObjectQueryType }
76       * 
77       * 
78       */
79      public List<RegistryObjectQueryType> getAffectedObjectQuery() {
80          if (affectedObjectQuery == null) {
81              affectedObjectQuery = new ArrayList<>();
82          }
83          return this.affectedObjectQuery;
84      }
85  
86      /**
87       * Gets the value of the eventTypeQuery property.
88       * 
89       * @return
90       *     possible object is
91       *     {@link ClassificationNodeQueryType }
92       *     
93       */
94      public ClassificationNodeQueryType getEventTypeQuery() {
95          return eventTypeQuery;
96      }
97  
98      /**
99       * Sets the value of the eventTypeQuery property.
100      * 
101      * @param value
102      *     allowed object is
103      *     {@link ClassificationNodeQueryType }
104      *     
105      */
106     public void setEventTypeQuery(ClassificationNodeQueryType value) {
107         this.eventTypeQuery = value;
108     }
109 
110     /**
111      * Gets the value of the userQuery property.
112      * 
113      * @return
114      *     possible object is
115      *     {@link UserQueryType }
116      *     
117      */
118     public UserQueryType getUserQuery() {
119         return userQuery;
120     }
121 
122     /**
123      * Sets the value of the userQuery property.
124      * 
125      * @param value
126      *     allowed object is
127      *     {@link UserQueryType }
128      *     
129      */
130     public void setUserQuery(UserQueryType value) {
131         this.userQuery = value;
132     }
133 
134 }