View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.cxf.weatherservice.myweather;
8   
9   import javax.xml.bind.annotation.XmlAccessType;
10  import javax.xml.bind.annotation.XmlAccessorType;
11  import javax.xml.bind.annotation.XmlElement;
12  import javax.xml.bind.annotation.XmlType;
13  
14  
15  /**
16   * <p>Java class for WeatherDescription complex type.
17   *
18   * <p>The following schema fragment specifies the expected content contained within this class.
19   *
20   * <pre>
21   * &lt;complexType name="WeatherDescription">
22   *   &lt;complexContent>
23   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24   *       &lt;sequence>
25   *         &lt;element name="WeatherID" type="{http://www.w3.org/2001/XMLSchema}short"/>
26   *         &lt;element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27   *         &lt;element name="PictureURL" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
28   *       &lt;/sequence>
29   *     &lt;/restriction>
30   *   &lt;/complexContent>
31   * &lt;/complexType>
32   * </pre>
33   *
34   *
35   */
36  @XmlAccessorType(XmlAccessType.FIELD)
37  @XmlType(name = "WeatherDescription", namespace = "http://ws.cdyne.com/WeatherWS/", propOrder = {
38      "weatherID",
39      "description",
40      "pictureURL"
41  })
42  public class WeatherDescription {
43  
44      @XmlElement(name = "WeatherID", namespace = "http://ws.cdyne.com/WeatherWS/")
45      protected short weatherID;
46      @XmlElement(name = "Description", namespace = "http://ws.cdyne.com/WeatherWS/")
47      protected String description;
48      @XmlElement(name = "PictureURL", namespace = "http://ws.cdyne.com/WeatherWS/")
49      protected String pictureURL;
50  
51      /**
52       * Gets the value of the weatherID property.
53       *
54       */
55      public short getWeatherID() {
56          return weatherID;
57      }
58  
59      /**
60       * Sets the value of the weatherID property.
61       *
62       */
63      public void setWeatherID(short value) {
64          this.weatherID = value;
65      }
66  
67      /**
68       * Gets the value of the description property.
69       *
70       * @return
71       *     possible object is
72       *     {@link String }
73       *
74       */
75      public String getDescription() {
76          return description;
77      }
78  
79      /**
80       * Sets the value of the description property.
81       *
82       * @param value
83       *     allowed object is
84       *     {@link String }
85       *
86       */
87      public void setDescription(String value) {
88          this.description = value;
89      }
90  
91      /**
92       * Gets the value of the pictureURL property.
93       *
94       * @return
95       *     possible object is
96       *     {@link String }
97       *
98       */
99      public String getPictureURL() {
100         return pictureURL;
101     }
102 
103     /**
104      * Sets the value of the pictureURL property.
105      *
106      * @param value
107      *     allowed object is
108      *     {@link String }
109      *
110      */
111     public void setPictureURL(String value) {
112         this.pictureURL = value;
113     }
114 
115 }