This project has retired. For details please refer to its Attic page.
CoveragePeriod xref
View Javadoc
1   /*
2    * Copyright 2001-2008 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   *
16   */
17  
18  
19  package org.uddi.sub_v3;
20  
21  import java.io.Serializable;
22  
23  import javax.xml.bind.annotation.XmlAccessType;
24  import javax.xml.bind.annotation.XmlAccessorType;
25  import javax.xml.bind.annotation.XmlSchemaType;
26  import javax.xml.bind.annotation.XmlTransient;
27  import javax.xml.bind.annotation.XmlType;
28  import javax.xml.datatype.XMLGregorianCalendar;
29  
30  
31  /**
32   * <p>Java class for coveragePeriod complex type.
33   * 
34   * <p>The following schema fragment specifies the expected content contained within this class.
35   * 
36   * <pre>
37   * &lt;complexType name="coveragePeriod">
38   *   &lt;complexContent>
39   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
40   *       &lt;sequence>
41   *         &lt;element ref="{urn:uddi-org:sub_v3}startPoint" minOccurs="0"/>
42   *         &lt;element ref="{urn:uddi-org:sub_v3}endPoint" minOccurs="0"/>
43   *       &lt;/sequence>
44   *     &lt;/restriction>
45   *   &lt;/complexContent>
46   * &lt;/complexType>
47   * </pre>
48   * 
49   * 
50   */
51  @XmlAccessorType(XmlAccessType.FIELD)
52  @XmlType(name = "coveragePeriod", propOrder = {
53      "startPoint",
54      "endPoint"
55  })
56  public class CoveragePeriod implements Serializable{
57  	@XmlTransient
58  	private static final long serialVersionUID = 6451073006135864305L;
59  	@XmlSchemaType(name = "dateTime")
60      protected XMLGregorianCalendar startPoint;
61      @XmlSchemaType(name = "dateTime")
62      protected XMLGregorianCalendar endPoint;
63  
64      /**
65       * Gets the value of the startPoint property.
66       * 
67       * @return
68       *     possible object is
69       *     {@link XMLGregorianCalendar }
70       *     
71       */
72      public XMLGregorianCalendar getStartPoint() {
73          return startPoint;
74      }
75  
76      /**
77       * Sets the value of the startPoint property.
78       * 
79       * @param value
80       *     allowed object is
81       *     {@link XMLGregorianCalendar }
82       *     
83       */
84      public void setStartPoint(XMLGregorianCalendar value) {
85          this.startPoint = value;
86      }
87  
88      /**
89       * Gets the value of the endPoint property.
90       * 
91       * @return
92       *     possible object is
93       *     {@link XMLGregorianCalendar }
94       *     
95       */
96      public XMLGregorianCalendar getEndPoint() {
97          return endPoint;
98      }
99  
100     /**
101      * Sets the value of the endPoint property.
102      * 
103      * @param value
104      *     allowed object is
105      *     {@link XMLGregorianCalendar }
106      *     
107      */
108     public void setEndPoint(XMLGregorianCalendar value) {
109         this.endPoint = value;
110     }
111 
112 }