142143144145146147148149150151152
} else if (obj instanceof SessionAction) { SessionAction sa = (SessionAction)obj; try { sa.run(ses); } catch (Exception e) { throw new ActionException(e); } }
152153154155156157158159160161162
} else if (obj instanceof SimpleAction) { SimpleAction sa = (SimpleAction)obj; try { sa.run(ids); } catch (Exception e) { throw new ActionException(e); } }