assertNotNull("Sequence " + SUITCASE_SEQ + " should not be null.", s);
Suitcase s1 = new Suitcase();
s1.setColor("black");
Suitcase s2 = new Suitcase();
s2.setColor("grey");
logger.log(BasicLevel.DEBUG, "Value is " + s.currentValue());
//make persistent
pm.currentTransaction().begin();
pm.makePersistent(s1);
pm.makePersistent(s2);
pm.currentTransaction().commit();