ActionForm form, HttpServletRequest request,
HttpServletResponse response)
throws Exception {
AccessController.checkAccess(Utils.getServiceContext(context),ACL_EDIT_ALERT);
ApplicationConfig appConfig = context.getApplicationConfig();
AlertConfig alertConfig = appConfig.removeAlert(
request.getParameter(RequestParams.ALERT_ID));
if(alertConfig != null){
ApplicationConfigManager.updateApplication(appConfig);
AlertEngine.getInstance().removeAlertConfig(alertConfig);
}