public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("country", this.country)
.append("address", this.address).append("province",
this.province).append("postalCode", this.postalCode)
.append("city", this.city).toString();
}