}
/**
* @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)
*/
public ActionForward list(ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse resp) {
InvocationListForm f = (InvocationListForm)form;
Group groupToDisplay = getCurrentGroup(req);
if (Boolean.TRUE.equals(f.getAllGroups()) && UserManager.isUserInRole(webUser, UserManagerBase.ADMINISTRATOR)) {
groupToDisplay = null;
}
Date now = new Date(System.currentTimeMillis());
if(Boolean.TRUE.equals(f.getOutdatedServices())){
now = null;
}
SmsDbManager smsDbManager = new SmsDbManager(locale, session);