1 package org.hibernate.test.annotations.onetoone; 3 4 import javax.persistence.Entity; 5 import javax.persistence.GeneratorType; 6 import javax.persistence.Id; 7 8 11 @Entity 12 public class Address { 13 14 private Integer id; 15 private String city; 16 17 @Id(generate = GeneratorType.AUTO) 18 public Integer getId() { 19 return id; 20 } 21 22 public void setId(Integer id) { 23 this.id = id; 24 } 25 26 public String getCity() { 27 return city; 28 } 29 30 public void setCity(String city) { 31 this.city = city; 32 } 33 } 34 | Popular Tags |