package eu.dnetlib.grid.process.model;

public class GridAddress {

	private String line_1;
	private String line_2;
	private String line_3 = null;
	private float lat;
	private float lng;
	private String postcode;
	private boolean primary;
	private String city;
	private String state;
	private String state_code;
	private String country;
	private String country_code;
	private GridCity geonames_city;

	public String getLine_1() {
		return line_1;
	}

	public void setLine_1(final String line_1) {
		this.line_1 = line_1;
	}

	public String getLine_2() {
		return line_2;
	}

	public void setLine_2(final String line_2) {
		this.line_2 = line_2;
	}

	public String getLine_3() {
		return line_3;
	}

	public void setLine_3(final String line_3) {
		this.line_3 = line_3;
	}

	public float getLat() {
		return lat;
	}

	public void setLat(final float lat) {
		this.lat = lat;
	}

	public float getLng() {
		return lng;
	}

	public void setLng(final float lng) {
		this.lng = lng;
	}

	public String getPostcode() {
		return postcode;
	}

	public void setPostcode(final String postcode) {
		this.postcode = postcode;
	}

	public boolean isPrimary() {
		return primary;
	}

	public void setPrimary(final boolean primary) {
		this.primary = primary;
	}

	public String getCity() {
		return city;
	}

	public void setCity(final String city) {
		this.city = city;
	}

	public String getState() {
		return state;
	}

	public void setState(final String state) {
		this.state = state;
	}

	public String getState_code() {
		return state_code;
	}

	public void setState_code(final String state_code) {
		this.state_code = state_code;
	}

	public String getCountry() {
		return country;
	}

	public void setCountry(final String country) {
		this.country = country;
	}

	public String getCountry_code() {
		return country_code;
	}

	public void setCountry_code(final String country_code) {
		this.country_code = country_code;
	}

	public GridCity getGeonames_city() {
		return geonames_city;
	}

	public void setGeonames_city(final GridCity geonames_city) {
		this.geonames_city = geonames_city;
	}

}
