1
2
3
4
5
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
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
53
54
55 public short getWeatherID() {
56 return weatherID;
57 }
58
59
60
61
62
63 public void setWeatherID(short value) {
64 this.weatherID = value;
65 }
66
67
68
69
70
71
72
73
74
75 public String getDescription() {
76 return description;
77 }
78
79
80
81
82
83
84
85
86
87 public void setDescription(String value) {
88 this.description = value;
89 }
90
91
92
93
94
95
96
97
98
99 public String getPictureURL() {
100 return pictureURL;
101 }
102
103
104
105
106
107
108
109
110
111 public void setPictureURL(String value) {
112 this.pictureURL = value;
113 }
114
115 }