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