1 package de.example.exampletdd.model.currentweather;
3 import java.io.Serializable;
5 public class Weather implements Serializable {
6 private static final long serialVersionUID = -34336548786316655L;
7 private String description;
12 public String getDescription(){
13 return this.description;
15 public void setDescription(final String description){
16 this.description = description;
18 public String getIcon(){
21 public void setIcon(final String icon){
24 public Number getId(){
27 public void setId(final Number id){
30 public String getMain(){
33 public void setMain(final String main){
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();