* Method executed for "method" parameter "enter"; prepares group and application form and session entries
* @see org.apache.struts.action.Action#execute(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
*/
protected ActionForward enter(ActionMapping mapping, ActionForm form,HttpServletRequest req, HttpServletResponse resp){
req.getSession().setAttribute("task", "create");
EnterEditDuplicateForm f = (EnterEditDuplicateForm)form;
Group group = groupPreparation(req, f.getGroupId());
f.setGroupId(group.getId());
Application application = applicationPreparation(req, group, f.getApplicationId());
f.setApplicationId(application.getId());
return mapping.findForward("continue");
}