req.getSession().setAttribute("formActionPath", req.getParameter("formActionPath"));
SmsSenderManager senderManager = new SmsSenderManager(locale, session);
GroupManager groupMgm = new GroupManager(locale,session);
req.getSession().setAttribute("senderList", senderManager.getSmsSenders());
req.getSession().setAttribute("clientProjects", groupMgm.getClientProjects());
ApplicationManager applicationManager = new ApplicationManager(locale,session);
List<Application> applications;
if (group != null){
applications = applicationManager.getApplications(group);
} else {
applications = new LinkedList<Application>();
}
Application application = new Application();
application.setId(-1);