a7bc22e2be99350f969afe60e3f88db81415b612
[JavaForFun] /
1 package de.example.exampletdd.model.currentweather;
2
3 import java.io.Serializable;
4 import java.util.Date;
5 import java.util.List;
6
7 /**
8  * Auto generated by: http://jsongen.byingtondesign.com/
9  * (with my own modifications)
10  *
11  */
12 public class Current implements Serializable {
13     private static final long serialVersionUID = -730690341739860818L;
14     private String base;
15     private Clouds clouds;
16     private Number cod;
17     private Coord coord;
18     private Number dt;
19     private Number id;
20     private Main main;
21     private String name;
22     private Rain rain;
23     private Snow snow;
24     private Sys sys;
25     private List<Weather> weather;
26     private Wind wind;
27     private byte[] iconData;
28     private Date date;
29
30     public String getBase(){
31         return this.base;
32     }
33     public void setBase(final String base){
34         this.base = base;
35     }
36     public Clouds getClouds(){
37         return this.clouds;
38     }
39     public void setClouds(final Clouds clouds){
40         this.clouds = clouds;
41     }
42
43     public Number getCod() {
44         return this.cod;
45     }
46
47     public void setCod(final Number cod) {
48         this.cod = cod;
49     }
50     public Coord getCoord(){
51         return this.coord;
52     }
53     public void setCoord(final Coord coord){
54         this.coord = coord;
55     }
56     public Number getDt(){
57         return this.dt;
58     }
59     public void setDt(final Number dt){
60         this.dt = dt;
61     }
62     public Number getId(){
63         return this.id;
64     }
65     public void setId(final Number id){
66         this.id = id;
67     }
68     public Main getMain(){
69         return this.main;
70     }
71     public void setMain(final Main main){
72         this.main = main;
73     }
74     public String getName(){
75         return this.name;
76     }
77     public void setName(final String name){
78         this.name = name;
79     }
80     public Rain getRain(){
81         return this.rain;
82     }
83     public void setRain(final Rain rain){
84         this.rain = rain;
85     }
86     public Snow getSnow() {
87         return this.snow;
88     }
89     public void setSnow(final Snow snow) {
90         this.snow = snow;
91     }
92     public Sys getSys(){
93         return this.sys;
94     }
95     public void setSys(final Sys sys){
96         this.sys = sys;
97     }
98     public List<Weather> getWeather(){
99         return this.weather;
100     }
101     public void setWeather(final List<Weather> weather){
102         this.weather = weather;
103     }
104     public Wind getWind(){
105         return this.wind;
106     }
107     public void setWind(final Wind wind){
108         this.wind = wind;
109     }
110
111     public byte[] getIconData() {
112         return this.iconData;
113     }
114
115     public void setIconData(final byte[] iconData) {
116         this.iconData = iconData;
117     }
118
119     public Date getDate() {
120         return this.date;
121     }
122
123     public void setDate(final Date date) {
124         this.date = date;
125     }
126
127     @Override
128     public String toString() {
129         final StringBuilder builder = new StringBuilder();
130         builder.append("Current [base=").append(this.base).append(", clouds=")
131         .append(this.clouds).append(", cod=").append(this.cod).append(", coord=")
132         .append(this.coord).append(", dt=").append(this.dt).append(", id=").append(this.id)
133         .append(", main=").append(this.main).append(", name=").append(this.name)
134         .append(", rain=").append(this.rain).append(", snow=").append(this.snow)
135         .append(", sys=").append(this.sys).append(", weather=").append(this.weather)
136         .append(", wind=").append(this.wind).append("]");
137         return builder.toString();
138     }
139 }