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