View Javadoc

1   /**
2    * Copyright 2011-2014 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  package org.kuali.mobility.weather.entity;
16  
17  import javax.xml.bind.annotation.XmlAccessType;
18  import javax.xml.bind.annotation.XmlAccessorType;
19  import javax.xml.bind.annotation.XmlAttribute;
20  import javax.xml.bind.annotation.XmlRootElement;
21  
22  /**
23   * Implementation of the CXF Alerts Service
24   * 
25   * @author Kuali Mobility Team (mobility.dev@kuali.org)
26   * @since 3.0
27   */
28  @XmlRootElement( name = "dailyForecast")
29  @XmlAccessorType(XmlAccessType.FIELD)
30  public class Forecast {
31  	private String name;
32  	private String text;
33  	private String iconLink;
34  	
35  	public String getName() {
36  		return name;
37  	}
38  	public void setName(String name) {
39  		this.name = name;
40  	}
41  	
42  	public String getText() {
43  		return text;
44  	}
45  	public void setText(String text) {
46  		this.text = text;
47  	}
48  	
49  	public String getIconLink() {
50  		return iconLink;
51  	}
52  	public void setIconLink(String iconLink) {
53  		this.iconLink = iconLink;
54  	}
55  
56  	
57  	
58  	
59  }