44a7842e7520211591ed3787fa2b4529473febaf
[JavaForFun] /
1 /**
2  * Copyright 2014 Gustavo Martin Morcuende
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package name.gumartinm.weather.information.model.forecastweather;
17
18 import java.io.Serializable;
19 import java.util.List;
20
21 public class Forecast implements Serializable {
22     private static final long serialVersionUID = 5095443678019686190L;
23     private City city;
24     private Number cnt;
25     private Number cod;
26     private List<name.gumartinm.weather.information.model.forecastweather.List> list;
27     private Number message;
28
29     public City getCity(){
30         return this.city;
31     }
32     public void setCity(final City city){
33         this.city = city;
34     }
35     public Number getCnt(){
36         return this.cnt;
37     }
38     public void setCnt(final Number cnt){
39         this.cnt = cnt;
40     }
41
42     public Number getCod() {
43         return this.cod;
44     }
45
46     public void setCod(final Number cod) {
47         this.cod = cod;
48     }
49
50     public List<name.gumartinm.weather.information.model.forecastweather.List> getList() {
51         return this.list;
52     }
53
54     public void setList(final List<name.gumartinm.weather.information.model.forecastweather.List> list) {
55         this.list = list;
56     }
57     public Number getMessage(){
58         return this.message;
59     }
60     public void setMessage(final Number message){
61         this.message = message;
62     }
63
64     @Override
65     public String toString() {
66         final StringBuilder builder = new StringBuilder();
67         builder.append("Forecast [city=").append(this.city).append(", cnt=")
68         .append(this.cnt).append(", cod=").append(this.cod).append(", list=")
69         .append(this.list).append(", message=").append(this.message).append("]");
70         return builder.toString();
71     }
72 }