From be02bbbc3c8cdb00ea07b525045aefa3d18c2bbf Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 22 Feb 2007 23:33:48 +0000
Subject: [PATCH] Update the access control config manager to send an administrative alert notification whenever the access control handler is enabled or disabled.
---
opends/src/server/org/opends/server/util/ServerConstants.java | 38 ++++++++++++++++++++++++++++++++++++++
1 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/util/ServerConstants.java b/opends/src/server/org/opends/server/util/ServerConstants.java
index 2f13a5a..3fe29f0 100644
--- a/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -1222,6 +1222,44 @@
/**
* The description for the alert type that will be used for the alert
+ * notification generated if the access control handler is disabled.
+ */
+ public static final String ALERT_DESCRIPTION_ACCESS_CONTROL_DISABLED =
+ "This alert type will be used to notify administrators that the " +
+ "access control handler has been disabled.";
+
+
+
+ /**
+ * The alert type string that will be used for the alert notification
+ * generated if the access control handler is disabled.
+ */
+ public static final String ALERT_TYPE_ACCESS_CONTROL_DISABLED =
+ "org.opends.server.AccessControlDisabled";
+
+
+
+ /**
+ * The description for the alert type that will be used for the alert
+ * notification generated if the access control handler is enabled.
+ */
+ public static final String ALERT_DESCRIPTION_ACCESS_CONTROL_ENABLED =
+ "This alert type will be used to notify administrators that the " +
+ "access control handler has been enabled.";
+
+
+
+ /**
+ * The alert type string that will be used for the alert notification
+ * generated if the access control handler is enabled.
+ */
+ public static final String ALERT_TYPE_ACCESS_CONTROL_ENABLED =
+ "org.opends.server.AccessControlEnabled";
+
+
+
+ /**
+ * The description for the alert type that will be used for the alert
* notification generated if a recurring task cannot be found to schedule the
* next iteration after the previous iteration has completed.
*/
--
Gitblit v1.10.0