View Javadoc
1   
2   package org.miloss.fgsms.services.interfaces.automatedreportingservice;
3   
4   import java.io.Serializable;
5   import java.math.BigInteger;
6   import javax.xml.bind.annotation.XmlAccessType;
7   import javax.xml.bind.annotation.XmlAccessorType;
8   import javax.xml.bind.annotation.XmlElement;
9   import javax.xml.bind.annotation.XmlType;
10  
11  
12  /**
13   * <p>Java class for dailySchedule complex type.
14   * 
15   * <p>The following schema fragment specifies the expected content contained within this class.
16   * 
17   * <pre>
18   * &lt;complexType name="dailySchedule">
19   *   &lt;complexContent>
20   *     &lt;extension base="{urn:org:miloss:fgsms:services:interfaces:automatedReportingService}abstractSchedule">
21   *       &lt;sequence>
22   *         &lt;element name="reoccurs" type="{http://www.w3.org/2001/XMLSchema}integer"/>
23   *       &lt;/sequence>
24   *     &lt;/extension>
25   *   &lt;/complexContent>
26   * &lt;/complexType>
27   * </pre>
28   * 
29   * 
30   */
31  @XmlAccessorType(XmlAccessType.FIELD)
32  @XmlType(name = "dailySchedule", propOrder = {
33      "reoccurs"
34  })
35  public class DailySchedule
36      extends AbstractSchedule
37      implements Serializable
38  {
39  
40      private final static long serialVersionUID = 1L;
41      @XmlElement(required = true, defaultValue = "1")
42      protected BigInteger reoccurs;
43  
44      /**
45       * Gets the value of the reoccurs property.
46       * 
47       * @return
48       *     possible object is
49       *     {@link BigInteger }
50       *     
51       */
52      public BigInteger getReoccurs() {
53          return reoccurs;
54      }
55  
56      /**
57       * Sets the value of the reoccurs property.
58       * 
59       * @param value
60       *     allowed object is
61       *     {@link BigInteger }
62       *     
63       */
64      public void setReoccurs(BigInteger value) {
65          this.reoccurs = value;
66      }
67  
68      public boolean isSetReoccurs() {
69          return (this.reoccurs!= null);
70      }
71  
72  }