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.XmlRootElement;
13 import javax.xml.bind.annotation.XmlType;
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "", propOrder = {
37 "getWeatherInformationResult"
38 })
39 @XmlRootElement(name = "GetWeatherInformationResponse", namespace = "http://ws.cdyne.com/WeatherWS/")
40 public class GetWeatherInformationResponse {
41
42 @XmlElement(name = "GetWeatherInformationResult", namespace = "http://ws.cdyne.com/WeatherWS/")
43 protected ArrayOfWeatherDescription getWeatherInformationResult;
44
45
46
47
48
49
50
51
52
53 public ArrayOfWeatherDescription getGetWeatherInformationResult() {
54 return getWeatherInformationResult;
55 }
56
57
58
59
60
61
62
63
64
65 public void setGetWeatherInformationResult(ArrayOfWeatherDescription value) {
66 this.getWeatherInformationResult = value;
67 }
68
69 }