From c2250231e8cdd0e0046d70deb1c96f63e2317afa Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Thu, 07 Feb 2008 01:21:38 +0000
Subject: [PATCH] Fix for issue 2249 (attributes are in pending mode after a setup with secure args)
---
opends/src/server/org/opends/server/tools/ConfigureDS.java | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/opends/src/server/org/opends/server/tools/ConfigureDS.java b/opends/src/server/org/opends/server/tools/ConfigureDS.java
index 8da384a..5b2ced2 100644
--- a/opends/src/server/org/opends/server/tools/ConfigureDS.java
+++ b/opends/src/server/org/opends/server/tools/ConfigureDS.java
@@ -22,7 +22,7 @@
* CDDL HEADER END
*
*
- * Portions Copyright 2006-2007 Sun Microsystems, Inc.
+ * Portions Copyright 2006-2008 Sun Microsystems, Inc.
*/
package org.opends.server.tools;
import org.opends.messages.Message;
@@ -672,7 +672,7 @@
BooleanConfigAttribute enablePortAttr =
new BooleanConfigAttribute(ATTR_CONNECTION_HANDLER_ENABLED,
INFO_LDAPS_CONNHANDLER_DESCRIPTION_ENABLE.get(),
- true, true, true);
+ true, true);
configEntry.putConfigAttribute(enablePortAttr);
}
catch (Exception e)
@@ -704,7 +704,7 @@
BooleanConfigAttribute enablePortAttr =
new BooleanConfigAttribute(ATTR_CONNECTION_HANDLER_ENABLED,
INFO_JMX_CONNHANDLER_DESCRIPTION_ENABLE.get(),
- true, true, true);
+ true, true);
configEntry.putConfigAttribute(enablePortAttr);
}
catch (Exception e)
@@ -729,7 +729,7 @@
BooleanConfigAttribute startTLS =
new BooleanConfigAttribute(ATTR_ALLOW_STARTTLS,
INFO_LDAP_CONNHANDLER_DESCRIPTION_ALLOW_STARTTLS.get(),
- true, true, true);
+ true, true);
configEntry.putConfigAttribute(startTLS);
}
catch (Exception e)
@@ -755,7 +755,7 @@
BooleanConfigAttribute enableAttr =
new BooleanConfigAttribute(ATTR_KEYMANAGER_ENABLED,
INFO_CONFIG_KEYMANAGER_DESCRIPTION_ENABLED.get(),
- true, true, true);
+ true, true);
configEntry.putConfigAttribute(enableAttr);
}
catch (Exception e)
@@ -841,7 +841,7 @@
BooleanConfigAttribute enableAttr =
new BooleanConfigAttribute(ATTR_TRUSTMANAGER_ENABLED,
ERR_CONFIG_TRUSTMANAGER_DESCRIPTION_ENABLED.get(),
- true, true, true);
+ true, true);
configEntry.putConfigAttribute(enableAttr);
}
catch (Exception e)
--
Gitblit v1.10.0