View Javadoc

1   /*
2    * $Id: POP.java 21856 2011-05-09 09:59:16Z dirk.olmes $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.cxf.weatherservice.myweather;
12  
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 POP complex type.
21   *
22   * <p>The following schema fragment specifies the expected content contained within this class.
23   *
24   * <pre>
25   * &lt;complexType name="POP">
26   *   &lt;complexContent>
27   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28   *       &lt;sequence>
29   *         &lt;element name="Nighttime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30   *         &lt;element name="Daytime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
31   *       &lt;/sequence>
32   *     &lt;/restriction>
33   *   &lt;/complexContent>
34   * &lt;/complexType>
35   * </pre>
36   *
37   *
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "POP", namespace = "http://ws.cdyne.com/WeatherWS/", propOrder = {
41      "nighttime",
42      "daytime"
43  })
44  public class POP {
45  
46      @XmlElement(name = "Nighttime", namespace = "http://ws.cdyne.com/WeatherWS/")
47      protected String nighttime;
48      @XmlElement(name = "Daytime", namespace = "http://ws.cdyne.com/WeatherWS/")
49      protected String daytime;
50  
51      /**
52       * Gets the value of the nighttime property.
53       *
54       * @return
55       *     possible object is
56       *     {@link String }
57       *
58       */
59      public String getNighttime() {
60          return nighttime;
61      }
62  
63      /**
64       * Sets the value of the nighttime property.
65       *
66       * @param value
67       *     allowed object is
68       *     {@link String }
69       *
70       */
71      public void setNighttime(String value) {
72          this.nighttime = value;
73      }
74  
75      /**
76       * Gets the value of the daytime property.
77       *
78       * @return
79       *     possible object is
80       *     {@link String }
81       *
82       */
83      public String getDaytime() {
84          return daytime;
85      }
86  
87      /**
88       * Sets the value of the daytime property.
89       *
90       * @param value
91       *     allowed object is
92       *     {@link String }
93       *
94       */
95      public void setDaytime(String value) {
96          this.daytime = value;
97      }
98  
99  }