1 /* 2 * $Id: GetCityForecastByZIP.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 * <complexType> 27 * <complexContent> 28 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 29 * <sequence> 30 * <element name="ZIP" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 31 * </sequence> 32 * </restriction> 33 * </complexContent> 34 * </complexType> 35 * </pre> 36 * 37 * 38 */ 39 @XmlAccessorType(XmlAccessType.FIELD) 40 @XmlType(name = "", propOrder = { 41 "zip" 42 }) 43 @XmlRootElement(name = "GetCityForecastByZIP", namespace = "http://ws.cdyne.com/WeatherWS/") 44 public class GetCityForecastByZIP { 45 46 @XmlElement(name = "ZIP", namespace = "http://ws.cdyne.com/WeatherWS/") 47 protected String zip; 48 49 /** 50 * Gets the value of the zip property. 51 * 52 * @return 53 * possible object is 54 * {@link String } 55 * 56 */ 57 public String getZIP() { 58 return zip; 59 } 60 61 /** 62 * Sets the value of the zip property. 63 * 64 * @param value 65 * allowed object is 66 * {@link String } 67 * 68 */ 69 public void setZIP(String value) { 70 this.zip = value; 71 } 72 73 }