*/
public ActionForward process(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws SystemException {
ForumDAO dao = ForumDAO.getInstance();
ProcessLockForumForm plfForm = (ProcessLockForumForm) form;
try {
dao.lockForum(plfForm.getForumid(),
Integer.parseInt(plfForm.getLocked()));
log(request, "logs.LOG20",plfForm.getForumid());
setStatusMessage(request, "status.FORUM_LOCKED", plfForm.getLocked());
} catch (SQLException sqle) {
getServlet().log("Connection.process", sqle);
throw new SystemException(sqle);
}