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.XmlAttribute;
14  import javax.xml.bind.annotation.XmlSchemaType;
15  import javax.xml.bind.annotation.XmlType;
16  import javax.xml.datatype.XMLGregorianCalendar;
17  
18  
19  /**
20   * <p>Java class for DateTimeFilterType complex type.
21   * 
22   * <p>The following schema fragment specifies the expected content contained within this class.
23   * 
24   * <pre>
25   * &lt;complexType name="DateTimeFilterType">
26   *   &lt;complexContent>
27   *     &lt;extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:query:3.0}SimpleFilterType">
28   *       &lt;attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
29   *     &lt;/extension>
30   *   &lt;/complexContent>
31   * &lt;/complexType>
32   * </pre>
33   * 
34   * 
35   */
36  @XmlAccessorType(XmlAccessType.FIELD)
37  @XmlType(name = "DateTimeFilterType")
38  public class DateTimeFilterType
39      extends SimpleFilterType
40  {
41  
42      @XmlAttribute(required = true)
43      @XmlSchemaType(name = "dateTime")
44      protected XMLGregorianCalendar value;
45  
46      /**
47       * Gets the value of the value property.
48       * 
49       * @return
50       *     possible object is
51       *     {@link XMLGregorianCalendar }
52       *     
53       */
54      public XMLGregorianCalendar getValue() {
55          return value;
56      }
57  
58      /**
59       * Sets the value of the value property.
60       * 
61       * @param value
62       *     allowed object is
63       *     {@link XMLGregorianCalendar }
64       *     
65       */
66      public void setValue(XMLGregorianCalendar value) {
67          this.value = value;
68      }
69  
70  }