: request.getParameter("id").toString();
// check if this action is allowed
try {
Mapping.begin();
if (!new SecurityManagerImpl().canEditSection(Section.getInstance(id), User.getInstance(request.getSession().getAttribute("userLogin")+""))) {
throw new Exception();
}
} catch (Exception e) {
throw new BackofficeSecurityException();
} finally {