package de.codecentric.ebss.model; public class Address { private String country; private String city; private String postalCode; private String street; private String houseNumber; public Address(String country, String city, String postalCode, String street, String houseNumber) { this.country = country; this.city = city; this.postalCode = postalCode; this.street = street; this.houseNumber = houseNumber; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getPostalCode() { return postalCode; } public void setPostalCode(String postalCode) { this.postalCode = postalCode; } public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public String getHouseNumber() { return houseNumber; } public void setHouseNumber(String houseNumber) { this.houseNumber = houseNumber; } }