package org.hibernate.test.annotations.override; import javax.persistence.Entity; import javax.persistence.Id; @Entity public class Addr { @Id int id; private String street; private String city; private String state; private String country; private String zipcode; public String getStreet() { return street; } public void setStreet(String street) { this.street = street; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public String getState() { return state; } public void setState(String state) { this.state = state; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public String getZipcode() { return zipcode; } public void setZipcode(String zipcode) { this.zipcode = zipcode; } public int getId() { return id; } public void setId(int id) { this.id = id; } }