Entity user_jsmith=stubFactory.createEntity("jsmith", "user", new String[]{"John Smith","IBM"});
Entity user_jdoe=stubFactory.createEntity("jdoe", "user", new String[]{"Jane Doe","Apple"});
StubEntityDAO userDao = new StubEntityDAO();
userDao.addEntity(user_jsmith);
userDao.addEntity(user_jdoe);
Entity role_manager=stubFactory.createEntity("manager", "role", new String[]{"Manager Role",""});
Entity role_admin=stubFactory.createEntity("admin", "role", new String[]{"Admin Role",""});
Entity role_random=stubFactory.createEntity("random", "role", new String[]{"Random Role",""});