View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
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   * <p>Java class for anonymous complex type.
18   *
19   * <p>The following schema fragment specifies the expected content contained within this class.
20   *
21   * <pre>
22   * &lt;complexType>
23   *   &lt;complexContent>
24   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25   *       &lt;sequence>
26   *         &lt;element name="GetWeatherInformationResult" type="{http://ws.cdyne.com/WeatherWS/}ArrayOfWeatherDescription" minOccurs="0"/>
27   *       &lt;/sequence>
28   *     &lt;/restriction>
29   *   &lt;/complexContent>
30   * &lt;/complexType>
31   * </pre>
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       * Gets the value of the getWeatherInformationResult property.
47       *
48       * @return
49       *     possible object is
50       *     {@link ArrayOfWeatherDescription }
51       *
52       */
53      public ArrayOfWeatherDescription getGetWeatherInformationResult() {
54          return getWeatherInformationResult;
55      }
56  
57      /**
58       * Sets the value of the getWeatherInformationResult property.
59       *
60       * @param value
61       *     allowed object is
62       *     {@link ArrayOfWeatherDescription }
63       *
64       */
65      public void setGetWeatherInformationResult(ArrayOfWeatherDescription value) {
66          this.getWeatherInformationResult = value;
67      }
68  
69  }