public ActionForward create(ActionMapping mapping, ActionForm form,HttpServletRequest req, HttpServletResponse resp) {
FragmentInteractionEnterOrEditForm f = (FragmentInteractionEnterOrEditForm)form;
MessageResources resources = getResources(req);
Group group = groupFromSession(req);
checkAccessRights(req, group);
FragmentCommandEntry fragmentCommandEntry = f.toEntry(new FragmentCommandEntry(), group, locale, session, resources);
LOGGER.info("User " + req.getUserPrincipal().getName().toLowerCase() + ": Created fragment entry #" + fragmentCommandEntry.getId());
setCommandEntryInRequest(req, fragmentCommandEntry);
return mapping.findForward("created");
}