View Javadoc

1   /*
2    * $Id: GetCityWeatherByZIPResponse.java 21856 2011-05-09 09:59:16Z dirk.olmes $
3    * --------------------------------------------------------------------------------------
4    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
5    *
6    * The software in this package is published under the terms of the CPAL v1.0
7    * license, a copy of which has been included with this distribution in the
8    * LICENSE.txt file.
9    */
10  
11  package org.mule.cxf.weatherservice.myweather;
12  
13  import javax.xml.bind.annotation.XmlAccessType;
14  import javax.xml.bind.annotation.XmlAccessorType;
15  import javax.xml.bind.annotation.XmlElement;
16  import javax.xml.bind.annotation.XmlRootElement;
17  import javax.xml.bind.annotation.XmlType;
18  
19  
20  /**
21   * <p>Java class for anonymous complex type.
22   *
23   * <p>The following schema fragment specifies the expected content contained within this class.
24   *
25   * <pre>
26   * &lt;complexType>
27   *   &lt;complexContent>
28   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29   *       &lt;sequence>
30   *         &lt;element name="GetCityWeatherByZIPResult" type="{http://ws.cdyne.com/WeatherWS/}WeatherReturn"/>
31   *       &lt;/sequence>
32   *     &lt;/restriction>
33   *   &lt;/complexContent>
34   * &lt;/complexType>
35   * </pre>
36   *
37   *
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "", propOrder = {
41      "getCityWeatherByZIPResult"
42  })
43  @XmlRootElement(name = "GetCityWeatherByZIPResponse", namespace = "http://ws.cdyne.com/WeatherWS/")
44  public class GetCityWeatherByZIPResponse {
45  
46      @XmlElement(name = "GetCityWeatherByZIPResult", namespace = "http://ws.cdyne.com/WeatherWS/", required = true)
47      protected WeatherReturn getCityWeatherByZIPResult;
48  
49      /**
50       * Gets the value of the getCityWeatherByZIPResult property.
51       *
52       * @return
53       *     possible object is
54       *     {@link WeatherReturn }
55       *
56       */
57      public WeatherReturn getGetCityWeatherByZIPResult() {
58          return getCityWeatherByZIPResult;
59      }
60  
61      /**
62       * Sets the value of the getCityWeatherByZIPResult property.
63       *
64       * @param value
65       *     allowed object is
66       *     {@link WeatherReturn }
67       *
68       */
69      public void setGetCityWeatherByZIPResult(WeatherReturn value) {
70          this.getCityWeatherByZIPResult = value;
71      }
72  
73  }