I know that you should extend Model to get all the jpa functionality. However, java does not allow multiple inheritance... Therefore, I would like to know how to architect in play the following design:
public class Person extends Model {
}
// should be able to extend Person
public class Doctor extends Model {
}
// should be able to extend Person
public class Patient extends Model {
}
public class Item extends Model {
// Doens't matter whether it's a Doctor or a Patient
@ManyToMany
public List<Person> owners;
}
Thanks in advance.