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

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;

@XmlAccessorType(XmlAccessType.FIELD)
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;
	}

}