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