public void testPolymorphism() throws Exception {
Session s = openSession();
Transaction tx = s.beginTransaction();
Plane p = new Plane();
p.setNbrOfSeats( 10 );
A320 a = new A320();
a.setJavaEmbeddedVersion( "5.0" );
a.setNbrOfSeats( 300 );
s.persist( a );
s.persist( p );
tx.commit();
s.close();