return;
}
Transaction tx = getServer().beginTransaction();
GenKeyIdentity al = new GenKeyIdentity();
al.setDescription("my description");
getServer().save(al);
// For JDBC batching we won't get the id until after
// the batch has been flushed explicitly or via commit
//assertNotNull(al.getId());
tx.commit();
assertNotNull(al.getId());
}