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 "getCityForecastByZIPResult"
38 })
39 @XmlRootElement(name = "GetCityForecastByZIPResponse", namespace = "http://ws.cdyne.com/WeatherWS/")
40 public class GetCityForecastByZIPResponse {
41
42 @XmlElement(name = "GetCityForecastByZIPResult", namespace = "http://ws.cdyne.com/WeatherWS/")
43 protected ForecastReturn getCityForecastByZIPResult;
44
45
46
47
48
49
50
51
52
53 public ForecastReturn getGetCityForecastByZIPResult() {
54 return getCityForecastByZIPResult;
55 }
56
57
58
59
60
61
62
63
64
65 public void setGetCityForecastByZIPResult(ForecastReturn value) {
66 this.getCityForecastByZIPResult = value;
67 }
68
69 }