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.lcm;
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.XmlRootElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rim.AdhocQueryType;
18  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rim.ObjectRefListType;
19  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rs.RegistryRequestType;
20  
21  
22  /**
23   * <p>Java class for anonymous complex type.
24   * 
25   * <p>The following schema fragment specifies the expected content contained within this class.
26   * 
27   * <pre>
28   * &lt;complexType>
29   *   &lt;complexContent>
30   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rs:3.0}RegistryRequestType">
31   *       &lt;sequence>
32   *         &lt;element ref="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}AdhocQuery" minOccurs="0"/>
33   *         &lt;element ref="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}ObjectRefList" 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 = "", propOrder = {
44      "adhocQuery",
45      "objectRefList"
46  })
47  @XmlRootElement(name = "DeprecateObjectsRequest")
48  public class DeprecateObjectsRequest
49      extends RegistryRequestType
50  {
51  
52      @XmlElement(name = "AdhocQuery", namespace = "urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0")
53      protected AdhocQueryType adhocQuery;
54      @XmlElement(name = "ObjectRefList", namespace = "urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0")
55      protected ObjectRefListType objectRefList;
56  
57      /**
58       * Gets the value of the adhocQuery property.
59       * 
60       * @return
61       *     possible object is
62       *     {@link AdhocQueryType }
63       *     
64       */
65      public AdhocQueryType getAdhocQuery() {
66          return adhocQuery;
67      }
68  
69      /**
70       * Sets the value of the adhocQuery property.
71       * 
72       * @param value
73       *     allowed object is
74       *     {@link AdhocQueryType }
75       *     
76       */
77      public void setAdhocQuery(AdhocQueryType value) {
78          this.adhocQuery = value;
79      }
80  
81      /**
82       * Gets the value of the objectRefList property.
83       * 
84       * @return
85       *     possible object is
86       *     {@link ObjectRefListType }
87       *     
88       */
89      public ObjectRefListType getObjectRefList() {
90          return objectRefList;
91      }
92  
93      /**
94       * Sets the value of the objectRefList property.
95       * 
96       * @param value
97       *     allowed object is
98       *     {@link ObjectRefListType }
99       *     
100      */
101     public void setObjectRefList(ObjectRefListType value) {
102         this.objectRefList = value;
103     }
104 
105 }