From 71512d1aab25aae01c2d74f0d5c40e6dc0e809c3 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Thu, 19 Apr 2007 18:55:16 +0000
Subject: [PATCH] The following changes are targetted to extend the Graphical Setup and provide the possibility of configuring SSL and Start TLS.

---
 opends/src/server/org/opends/server/messages/ProtocolMessages.java |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/opends/src/server/org/opends/server/messages/ProtocolMessages.java b/opends/src/server/org/opends/server/messages/ProtocolMessages.java
index bd0ad25..0e5236e 100644
--- a/opends/src/server/org/opends/server/messages/ProtocolMessages.java
+++ b/opends/src/server/org/opends/server/messages/ProtocolMessages.java
@@ -4347,6 +4347,7 @@
 
 
 
+
   /**
    * The message ID for the message that will be used if an error occurs while
    * attempting to configure the connection security provider for a new
@@ -4378,7 +4379,13 @@
   public static final int MSGID_LDAP_CONNHANDLER_NO_TRUSTMANAGER_DN =
        CATEGORY_MASK_PROTOCOL | SEVERITY_MASK_SEVERE_ERROR | 403;
 
-
+  /**
+   * The message ID for the message that will be used as the description of the
+   * configuration attribute specifying whether to enable the LDAPS
+   * connection handler.
+   */
+  public static final int MSGID_LDAPS_CONNHANDLER_DESCRIPTION_ENABLE =
+       CATEGORY_MASK_PROTOCOL | SEVERITY_MASK_INFORMATIONAL | 404;
 
   /**
    * Associates a set of generic messages with the message IDs defined in this
@@ -5306,6 +5313,9 @@
                     "configuration attribute will not take effect until the " +
                     "connection handler is disabled and re-enabled, or until " +
                     "the Directory Server is restarted.");
+    registerMessage(MSGID_LDAPS_CONNHANDLER_DESCRIPTION_ENABLE,
+                    "Specifies whether to enable the LDAPS connection " +
+                    "handler.");
     registerMessage(MSGID_LDAP_CONNHANDLER_DESCRIPTION_BACKLOG,
                     "Specifies the accept queue size, which controls the " +
                     "number of new connection attempts that may be allowed " +

--
Gitblit v1.10.0