package exercise; @Exportable("address") public class AddressForTest { @Persistent private String country = null; @Persistent private String province = null; @Persistent private String city = null; @Persistent private String street = null; @Persistent private String door = null; public AddressForTest(String country, String province, String city, String street, String door) { this.country = country; this.province = province; this.city = city; this.street = street; this.door = door; } }