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.math.BigInteger;
12  import javax.xml.bind.annotation.XmlAccessType;
13  import javax.xml.bind.annotation.XmlAccessorType;
14  import javax.xml.bind.annotation.XmlAttribute;
15  import javax.xml.bind.annotation.XmlElement;
16  import javax.xml.bind.annotation.XmlRootElement;
17  import javax.xml.bind.annotation.XmlType;
18  
19  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rim.RegistryObjectListType;
20  import org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rs.RegistryResponseType;
21  
22  
23  /**
24   * <p>Java class for anonymous complex type.
25   * 
26   * <p>The following schema fragment specifies the expected content contained within this class.
27   * 
28   * <pre>
29   * &lt;complexType>
30   *   &lt;complexContent>
31   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rs:3.0}RegistryResponseType">
32   *       &lt;sequence>
33   *         &lt;element ref="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}RegistryObjectList"/>
34   *       &lt;/sequence>
35   *       &lt;attribute name="startIndex" type="{http://www.w3.org/2001/XMLSchema}integer" default="0" />
36   *       &lt;attribute name="totalResultCount" type="{http://www.w3.org/2001/XMLSchema}integer" />
37   *     &lt;/extension>
38   *   &lt;/complexContent>
39   * &lt;/complexType>
40   * </pre>
41   * 
42   * 
43   */
44  @XmlAccessorType(XmlAccessType.FIELD)
45  @XmlType(name = "", propOrder = {
46      "registryObjectList"
47  })
48  @XmlRootElement(name = "AdhocQueryResponse")
49  public class AdhocQueryResponse
50      extends RegistryResponseType
51  {
52  
53      @XmlElement(name = "RegistryObjectList", namespace = "urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0", required = true)
54      protected RegistryObjectListType registryObjectList;
55      @XmlAttribute
56      protected BigInteger startIndex;
57      @XmlAttribute
58      protected BigInteger totalResultCount;
59  
60      /**
61       * Gets the value of the registryObjectList property.
62       * 
63       * @return
64       *     possible object is
65       *     {@link RegistryObjectListType }
66       *     
67       */
68      public RegistryObjectListType getRegistryObjectList() {
69          return registryObjectList;
70      }
71  
72      /**
73       * Sets the value of the registryObjectList property.
74       * 
75       * @param value
76       *     allowed object is
77       *     {@link RegistryObjectListType }
78       *     
79       */
80      public void setRegistryObjectList(RegistryObjectListType value) {
81          this.registryObjectList = value;
82      }
83  
84      /**
85       * Gets the value of the startIndex property.
86       * 
87       * @return
88       *     possible object is
89       *     {@link BigInteger }
90       *     
91       */
92      public BigInteger getStartIndex() {
93          if (startIndex == null) {
94              return new BigInteger("0");
95          } else {
96              return startIndex;
97          }
98      }
99  
100     /**
101      * Sets the value of the startIndex property.
102      * 
103      * @param value
104      *     allowed object is
105      *     {@link BigInteger }
106      *     
107      */
108     public void setStartIndex(BigInteger value) {
109         this.startIndex = value;
110     }
111 
112     /**
113      * Gets the value of the totalResultCount property.
114      * 
115      * @return
116      *     possible object is
117      *     {@link BigInteger }
118      *     
119      */
120     public BigInteger getTotalResultCount() {
121         return totalResultCount;
122     }
123 
124     /**
125      * Sets the value of the totalResultCount property.
126      * 
127      * @param value
128      *     allowed object is
129      *     {@link BigInteger }
130      *     
131      */
132     public void setTotalResultCount(BigInteger value) {
133         this.totalResultCount = value;
134     }
135 
136 }