Considerate the following structure of Entity classes:
By what should be replace "XXXXX" to obtain only one table "Employe" with Hibernate?
@Entity
@Table(name = "Employe")
@XXXXX
@DiscriminatorColumn(
name = "TypeE"
, discriminatorType = DiscriminatorType.STRING)
@DiscriminatorValue("Employe")
public class Employe implements Serializable {
// ...
}