1
2
3
4
5
6
7
8
9
10
11
12
13
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
24
25
26
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 }