A simple example of Vehicle hierarchy can be taken for single table inheritance strategy.
Abstract Vehicle class:
package com.thejavageek.jpa.entities;
import javax.persistence.DiscriminatorColumn;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persi...