типа таких
public class Address {
   public Address(String city, String street, String house, String flat) {      
this.city = city;
      this.street = street;      
this.house = house;
      this.flat = flat;
   }
   public String getCity() {
      return city;
   }
   public String getStreet() {
      return street;
   }
}