1 package org.hibernate.test.annotations.id; 3 4 import javax.persistence.Entity; 5 import javax.persistence.GeneratorType; 6 import javax.persistence.Id; 7 8 12 @Entity 13 public class Home { 14 private Long id; 15 16 @Id(generate=GeneratorType.SEQUENCE) 17 public Long getId() { 18 return id; 19 } 20 21 public void setId(Long id) { 22 this.id = id; 23 } 24 } 25 | Popular Tags |