*/
@Override
protected ActionForward defaultMethod(ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse resp) {
ActionForward actionForward = super.defaultMethod(mapping, form, req, resp);
InvocationEnterOrEditForm f = (InvocationEnterOrEditForm)form;
Invocation entry = entryFromDatabase(f.getId());
prepareSelectionLists(form, req, entry != null ? entry.getMsisdn() : null,entry != null ? entry.getEmail() : null);
return actionForward;
}