1 package org.hibernate.test.hql; 3 4 9 public class Address { 10 private String street; 11 private String city; 12 private String postalCode; 13 private String country; 14 15 public String getStreet() { 16 return street; 17 } 18 19 public void setStreet(String street) { 20 this.street = street; 21 } 22 23 public String getCity() { 24 return city; 25 } 26 27 public void setCity(String city) { 28 this.city = city; 29 } 30 31 public String getPostalCode() { 32 return postalCode; 33 } 34 35 public void setPostalCode(String postalCode) { 36 this.postalCode = postalCode; 37 } 38 39 public String getCountry() { 40 return country; 41 } 42 43 public void setCountry(String country) { 44 this.country = country; 45 } 46 } 47 | Popular Tags |