View Javadoc

1   /*
2    * $Id: WeatherDescription.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 WeatherDescription complex type.
21   *
22   * <p>The following schema fragment specifies the expected content contained within this class.
23   *
24   * <pre>
25   * &lt;complexType name="WeatherDescription">
26   *   &lt;complexContent>
27   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28   *       &lt;sequence>
29   *         &lt;element name="WeatherID" type="{http://www.w3.org/2001/XMLSchema}short"/>
30   *         &lt;element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
31   *         &lt;element name="PictureURL" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
32   *       &lt;/sequence>
33   *     &lt;/restriction>
34   *   &lt;/complexContent>
35   * &lt;/complexType>
36   * </pre>
37   *
38   *
39   */
40  @XmlAccessorType(XmlAccessType.FIELD)
41  @XmlType(name = "WeatherDescription", namespace = "http://ws.cdyne.com/WeatherWS/", propOrder = {
42      "weatherID",
43      "description",
44      "pictureURL"
45  })
46  public class WeatherDescription {
47  
48      @XmlElement(name = "WeatherID", namespace = "http://ws.cdyne.com/WeatherWS/")
49      protected short weatherID;
50      @XmlElement(name = "Description", namespace = "http://ws.cdyne.com/WeatherWS/")
51      protected String description;
52      @XmlElement(name = "PictureURL", namespace = "http://ws.cdyne.com/WeatherWS/")
53      protected String pictureURL;
54  
55      /**
56       * Gets the value of the weatherID property.
57       *
58       */
59      public short getWeatherID() {
60          return weatherID;
61      }
62  
63      /**
64       * Sets the value of the weatherID property.
65       *
66       */
67      public void setWeatherID(short value) {
68          this.weatherID = value;
69      }
70  
71      /**
72       * Gets the value of the description property.
73       *
74       * @return
75       *     possible object is
76       *     {@link String }
77       *
78       */
79      public String getDescription() {
80          return description;
81      }
82  
83      /**
84       * Sets the value of the description property.
85       *
86       * @param value
87       *     allowed object is
88       *     {@link String }
89       *
90       */
91      public void setDescription(String value) {
92          this.description = value;
93      }
94  
95      /**
96       * Gets the value of the pictureURL property.
97       *
98       * @return
99       *     possible object is
100      *     {@link String }
101      *
102      */
103     public String getPictureURL() {
104         return pictureURL;
105     }
106 
107     /**
108      * Sets the value of the pictureURL property.
109      *
110      * @param value
111      *     allowed object is
112      *     {@link String }
113      *
114      */
115     public void setPictureURL(String value) {
116         this.pictureURL = value;
117     }
118 
119 }