1 package org.hibernate.test.annotations.entity; 3 4 import javax.persistence.Entity; 5 import javax.persistence.Id; 6 7 10 @Entity 11 public class Race implements Length<Long > { 12 private Long length; 13 private Integer id; 14 @Id 15 public Integer getId() { 16 return id; 17 } 18 19 public void setId(Integer id) { 20 this.id = id; 21 } 22 23 public Long getLength() { 24 return length; 25 } 26 27 public void setLength(Long length) { 28 this.length = length; 29 } 30 } 31 | Popular Tags |