From 2a55846c7fd94f20d41062cc786a6288dfec76a4 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Thu, 07 Jun 2007 17:19:20 +0000
Subject: [PATCH] Fix for issue 1633 (JMX port should be disabled by default)
---
opends/src/server/org/opends/server/messages/ProtocolMessages.java | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/messages/ProtocolMessages.java b/opends/src/server/org/opends/server/messages/ProtocolMessages.java
index 6049cf7..a305e3c 100644
--- a/opends/src/server/org/opends/server/messages/ProtocolMessages.java
+++ b/opends/src/server/org/opends/server/messages/ProtocolMessages.java
@@ -4617,6 +4617,13 @@
public static final int MSGID_LDAP_FILTER_ENCLOSED_IN_APOSTROPHES =
CATEGORY_MASK_PROTOCOL | SEVERITY_MASK_MILD_ERROR | 427;
+ /**
+ * 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_JMX_CONNHANDLER_DESCRIPTION_ENABLE =
+ CATEGORY_MASK_PROTOCOL | SEVERITY_MASK_INFORMATIONAL | 428;
/**
* Associates a set of generic messages with the message IDs defined in this
@@ -6371,6 +6378,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_JMX_CONNHANDLER_DESCRIPTION_ENABLE,
+ "Specifies whether to enable the JMX connection " +
+ "handler");
registerMessage(MSGID_JMX_CONNHANDLER_NO_LISTEN_PORT,
"No listen port was defined using configuration " +
ATTR_LISTEN_PORT + " in configuration entry %s. This is " +
--
Gitblit v1.10.0