b18354cccb9066c946a75ac91fd4ff1a22cd2f62
[JavaForFun] /
1 package com.weather.information.model.forecastweather;
2
3 import java.io.Serializable;
4
5 public class Weather implements Serializable {
6     private static final long serialVersionUID = -5066357704517363241L;
7     private String description;
8     private String icon;
9     private Number id;
10     private String main;
11
12     public String getDescription(){
13         return this.description;
14     }
15     public void setDescription(final String description){
16         this.description = description;
17     }
18     public String getIcon(){
19         return this.icon;
20     }
21     public void setIcon(final String icon){
22         this.icon = icon;
23     }
24     public Number getId(){
25         return this.id;
26     }
27     public void setId(final Number id){
28         this.id = id;
29     }
30     public String getMain(){
31         return this.main;
32     }
33     public void setMain(final String main){
34         this.main = main;
35     }
36
37     @Override
38     public String toString() {
39         final StringBuilder builder = new StringBuilder();
40         builder.append("Weather [description=").append(this.description).append(", icon=")
41         .append(this.icon).append(", id=").append(this.id).append(", main=")
42         .append(this.main).append("]");
43         return builder.toString();
44     }
45 }