1f9a5fb71ad344a7e16b44489677188af141f6b9
[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
20
21 public class City implements Serializable {
22     private static final long serialVersionUID = 3208415171959638923L;
23     private Coord coord;
24     private String country;
25     private Number id;
26     private String name;
27     private Number population;
28
29     public Coord getCoord(){
30         return this.coord;
31     }
32     public void setCoord(final Coord coord){
33         this.coord = coord;
34     }
35     public String getCountry(){
36         return this.country;
37     }
38     public void setCountry(final String country){
39         this.country = country;
40     }
41     public Number getId(){
42         return this.id;
43     }
44     public void setId(final Number id){
45         this.id = id;
46     }
47     public String getName(){
48         return this.name;
49     }
50     public void setName(final String name){
51         this.name = name;
52     }
53     public Number getPopulation(){
54         return this.population;
55     }
56     public void setPopulation(final Number population){
57         this.population = population;
58     }
59
60     @Override
61     public String toString() {
62         final StringBuilder builder = new StringBuilder();
63         builder.append("City [coord=").append(this.coord).append(", country=").append(this.country)
64         .append(", id=").append(this.id).append(", name=").append(this.name)
65         .append(", population=").append(this.population).append("]");
66         return builder.toString();
67     }
68 }