return map;
}
public ActionForward enter(ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse resp) {
UserSetSplitForm userSetSplitForm = (UserSetSplitForm) form;
UserSetManager userSetMgm = new UserSetManager(locale, session);
String idParameter = req.getParameter("id");
if (idParameter == null) {
throw new InputException("ID of user set required");
}
UserSet userSet = userSetMgm.getUserSet(Long.parseLong(idParameter));
userSetSplitForm.setUserSetId(userSet.getId());
userSetSplitForm.setUserSetName(userSet.getName());
req.getSession().setAttribute("userCount", userSetMgm.getNumberOfUsersInUserSet(userSet));
return mapping.findForward("enter");
}