ContactAddressEntry.java 735 Bytes
package fi.insomnia.bortal.verkkomaksutfi;

public class ContactAddressEntry {

	private String street;
	private String postalCode;
	private String postalOffice;
	private String country = "FI";

	public String getStreet() {
		return street;
	}

	public void setStreet(String street) {
		this.street = street;
	}

	public String getPostalCode() {
		return postalCode;
	}

	public void setPostalCode(String postalCode) {
		this.postalCode = postalCode;
	}

	public String getPostalOffice() {
		return postalOffice;
	}

	public void setPostalOffice(String postalOffice) {
		this.postalOffice = postalOffice;
	}

	public String getCountry() {
		return country;
	}

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

}