1
2
3
4
5
6
7
8
9
10
11 package org.mule.cxf.weatherservice.myweather;
12
13 import javax.xml.bind.JAXBElement;
14 import javax.xml.bind.annotation.XmlElementDecl;
15 import javax.xml.bind.annotation.XmlRegistry;
16 import javax.xml.namespace.QName;
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 @XmlRegistry
34 public class ObjectFactory {
35
36 private final static QName _WeatherReturn_QNAME = new QName("http://ws.cdyne.com/WeatherWS/", "WeatherReturn");
37 private final static QName _ArrayOfWeatherDescription_QNAME = new QName("http://ws.cdyne.com/WeatherWS/", "ArrayOfWeatherDescription");
38 private final static QName _ForecastReturn_QNAME = new QName("http://ws.cdyne.com/WeatherWS/", "ForecastReturn");
39
40
41
42
43
44 public ObjectFactory() {
45 }
46
47
48
49
50
51 public GetCityForecastByZIP createGetCityForecastByZIP() {
52 return new GetCityForecastByZIP();
53 }
54
55
56
57
58
59 public GetCityForecastByZIPResponse createGetCityForecastByZIPResponse() {
60 return new GetCityForecastByZIPResponse();
61 }
62
63
64
65
66
67 public POP createPOP() {
68 return new POP();
69 }
70
71
72
73
74
75 public WeatherDescription createWeatherDescription() {
76 return new WeatherDescription();
77 }
78
79
80
81
82
83 public ArrayOfWeatherDescription createArrayOfWeatherDescription() {
84 return new ArrayOfWeatherDescription();
85 }
86
87
88
89
90
91 public GetWeatherInformation createGetWeatherInformation() {
92 return new GetWeatherInformation();
93 }
94
95
96
97
98
99 public GetCityWeatherByZIPResponse createGetCityWeatherByZIPResponse() {
100 return new GetCityWeatherByZIPResponse();
101 }
102
103
104
105
106
107 public WeatherReturn createWeatherReturn() {
108 return new WeatherReturn();
109 }
110
111
112
113
114
115 public GetCityWeatherByZIP createGetCityWeatherByZIP() {
116 return new GetCityWeatherByZIP();
117 }
118
119
120
121
122
123 public Forecast createForecast() {
124 return new Forecast();
125 }
126
127
128
129
130
131 public Temp createTemp() {
132 return new Temp();
133 }
134
135
136
137
138
139 public ForecastReturn createForecastReturn() {
140 return new ForecastReturn();
141 }
142
143
144
145
146
147 public ArrayOfForecast createArrayOfForecast() {
148 return new ArrayOfForecast();
149 }
150
151
152
153
154
155 public GetWeatherInformationResponse createGetWeatherInformationResponse() {
156 return new GetWeatherInformationResponse();
157 }
158
159
160
161
162
163 @XmlElementDecl(namespace = "http://ws.cdyne.com/WeatherWS/", name = "WeatherReturn")
164 public JAXBElement<WeatherReturn> createWeatherReturn(WeatherReturn value) {
165 return new JAXBElement<WeatherReturn>(_WeatherReturn_QNAME, WeatherReturn.class, null, value);
166 }
167
168
169
170
171
172 @XmlElementDecl(namespace = "http://ws.cdyne.com/WeatherWS/", name = "ArrayOfWeatherDescription")
173 public JAXBElement<ArrayOfWeatherDescription> createArrayOfWeatherDescription(ArrayOfWeatherDescription value) {
174 return new JAXBElement<ArrayOfWeatherDescription>(_ArrayOfWeatherDescription_QNAME, ArrayOfWeatherDescription.class, null, value);
175 }
176
177
178
179
180
181 @XmlElementDecl(namespace = "http://ws.cdyne.com/WeatherWS/", name = "ForecastReturn")
182 public JAXBElement<ForecastReturn> createForecastReturn(ForecastReturn value) {
183 return new JAXBElement<ForecastReturn>(_ForecastReturn_QNAME, ForecastReturn.class, null, value);
184 }
185
186 }