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