//$Id$ package org.hibernate.ejb.test.emops; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Inheritance; import javax.persistence.InheritanceType; @Entity @Inheritance( strategy = InheritanceType.JOINED ) public class Pet implements java.io.Serializable { private int id; private String name; private double weight; @Id @GeneratedValue( strategy = GenerationType.AUTO ) public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public double getWeight() { return weight; } public void setWeight(double weight) { this.weight = weight; } }