HttpServletRequest request,
HttpServletResponse response)
throws Exception{
AccessController.checkAccess(context.getServiceContext(),
ACL_EDIT_JMANAGE_CONFIG);
ConfigureForm confgForm = (ConfigureForm)actionForm;
final JManageProperties jManageProperties = JManageProperties.getInstance();
final int MAX_LOGIN_ATTEMPTS_ALLOWED =
Integer.parseInt(jManageProperties.
getProperty(JManageProperties.LOGIN_MAX_ATTEMPTS));
confgForm.setMaxLoginAttempts(MAX_LOGIN_ATTEMPTS_ALLOWED);
return mapping.findForward(Forwards.SUCCESS);
}