user.getName().setLastName("Public");
user.setPassword("password");
user.setTimeOfCreation( new GregorianCalendar() );
user.setHandle("myHandle");
Long savedUserId = service.storeUser( user ).getId();
getLog().info("User created with id = " + savedUserId );
// make *sure* it gets loaded into cache. This is to check
// that JBossCache as 2nd-level cache is properly releasing
// resources on SF shutdown; I have manually verified this is