Project

General

Profile

1
package eu.dnetlib.grid.process.model;
2

    
3
public class GridAddress {
4

    
5
	private String line_1;
6
	private String line_2;
7
	private String line_3 = null;
8
	private float lat;
9
	private float lng;
10
	private String postcode;
11
	private boolean primary;
12
	private String city;
13
	private String state;
14
	private String state_code;
15
	private String country;
16
	private String country_code;
17
	private GridCity geonames_city;
18

    
19
	public String getLine_1() {
20
		return line_1;
21
	}
22

    
23
	public void setLine_1(final String line_1) {
24
		this.line_1 = line_1;
25
	}
26

    
27
	public String getLine_2() {
28
		return line_2;
29
	}
30

    
31
	public void setLine_2(final String line_2) {
32
		this.line_2 = line_2;
33
	}
34

    
35
	public String getLine_3() {
36
		return line_3;
37
	}
38

    
39
	public void setLine_3(final String line_3) {
40
		this.line_3 = line_3;
41
	}
42

    
43
	public float getLat() {
44
		return lat;
45
	}
46

    
47
	public void setLat(final float lat) {
48
		this.lat = lat;
49
	}
50

    
51
	public float getLng() {
52
		return lng;
53
	}
54

    
55
	public void setLng(final float lng) {
56
		this.lng = lng;
57
	}
58

    
59
	public String getPostcode() {
60
		return postcode;
61
	}
62

    
63
	public void setPostcode(final String postcode) {
64
		this.postcode = postcode;
65
	}
66

    
67
	public boolean isPrimary() {
68
		return primary;
69
	}
70

    
71
	public void setPrimary(final boolean primary) {
72
		this.primary = primary;
73
	}
74

    
75
	public String getCity() {
76
		return city;
77
	}
78

    
79
	public void setCity(final String city) {
80
		this.city = city;
81
	}
82

    
83
	public String getState() {
84
		return state;
85
	}
86

    
87
	public void setState(final String state) {
88
		this.state = state;
89
	}
90

    
91
	public String getState_code() {
92
		return state_code;
93
	}
94

    
95
	public void setState_code(final String state_code) {
96
		this.state_code = state_code;
97
	}
98

    
99
	public String getCountry() {
100
		return country;
101
	}
102

    
103
	public void setCountry(final String country) {
104
		this.country = country;
105
	}
106

    
107
	public String getCountry_code() {
108
		return country_code;
109
	}
110

    
111
	public void setCountry_code(final String country_code) {
112
		this.country_code = country_code;
113
	}
114

    
115
	public GridCity getGeonames_city() {
116
		return geonames_city;
117
	}
118

    
119
	public void setGeonames_city(final GridCity geonames_city) {
120
		this.geonames_city = geonames_city;
121
	}
122

    
123
}
(1-1/10)