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 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.XmlType;
15  
16  
17  /**
18   * <p>Java class for ExtrinsicObjectQueryType complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="ExtrinsicObjectQueryType">
24   *   &lt;complexContent>
25   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}RegistryObjectQueryType">
26   *       &lt;sequence>
27   *         &lt;element name="ContentVersionInfoFilter" type="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}FilterType" minOccurs="0"/>
28   *       &lt;/sequence>
29   *     &lt;/extension>
30   *   &lt;/complexContent>
31   * &lt;/complexType>
32   * </pre>
33   * 
34   * 
35   */
36  @XmlAccessorType(XmlAccessType.FIELD)
37  @XmlType(name = "ExtrinsicObjectQueryType", propOrder = {
38      "contentVersionInfoFilter"
39  })
40  public class ExtrinsicObjectQueryType
41      extends RegistryObjectQueryType
42  {
43  
44      @XmlElement(name = "ContentVersionInfoFilter")
45      protected FilterType contentVersionInfoFilter;
46  
47      /**
48       * Gets the value of the contentVersionInfoFilter property.
49       * 
50       * @return
51       *     possible object is
52       *     {@link FilterType }
53       *     
54       */
55      public FilterType getContentVersionInfoFilter() {
56          return contentVersionInfoFilter;
57      }
58  
59      /**
60       * Sets the value of the contentVersionInfoFilter property.
61       * 
62       * @param value
63       *     allowed object is
64       *     {@link FilterType }
65       *     
66       */
67      public void setContentVersionInfoFilter(FilterType value) {
68          this.contentVersionInfoFilter = value;
69      }
70  
71  }