I'm attempting to set up a new database architecture now that we've opted to use Hibernate. Previously, I had the three classes shown below in my Java code.
Super Class:
public abstract class Card {
private String firstname;
private String lastname;
private String email...