1 /* 2 * $Id: Temp.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.XmlType; 17 18 19 /** 20 * <p>Java class for temp complex type. 21 * 22 * <p>The following schema fragment specifies the expected content contained within this class. 23 * 24 * <pre> 25 * <complexType name="temp"> 26 * <complexContent> 27 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 28 * <sequence> 29 * <element name="MorningLow" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 30 * <element name="DaytimeHigh" 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 = "temp", namespace = "http://ws.cdyne.com/WeatherWS/", propOrder = { 41 "morningLow", 42 "daytimeHigh" 43 }) 44 public class Temp { 45 46 @XmlElement(name = "MorningLow", namespace = "http://ws.cdyne.com/WeatherWS/") 47 protected String morningLow; 48 @XmlElement(name = "DaytimeHigh", namespace = "http://ws.cdyne.com/WeatherWS/") 49 protected String daytimeHigh; 50 51 /** 52 * Gets the value of the morningLow property. 53 * 54 * @return 55 * possible object is 56 * {@link String } 57 * 58 */ 59 public String getMorningLow() { 60 return morningLow; 61 } 62 63 /** 64 * Sets the value of the morningLow property. 65 * 66 * @param value 67 * allowed object is 68 * {@link String } 69 * 70 */ 71 public void setMorningLow(String value) { 72 this.morningLow = value; 73 } 74 75 /** 76 * Gets the value of the daytimeHigh property. 77 * 78 * @return 79 * possible object is 80 * {@link String } 81 * 82 */ 83 public String getDaytimeHigh() { 84 return daytimeHigh; 85 } 86 87 /** 88 * Sets the value of the daytimeHigh property. 89 * 90 * @param value 91 * allowed object is 92 * {@link String } 93 * 94 */ 95 public void setDaytimeHigh(String value) { 96 this.daytimeHigh = value; 97 } 98 99 }