From ebf7f2d0d1f1ced4a2250264a9503323104b0ab5 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Wed, 21 Nov 2012 23:24:40 +0000
Subject: [PATCH] Fix OPENDJ-649: Add supportedTLSCiphers and supportedTLSProtocols to RootDSE and system monitor
---
opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java | 36 ++++++++++++++++++++++++++++++++++++
1 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java b/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java
index bb8787c..5fc7f66 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -573,6 +573,42 @@
/**
+ * The name of the standard attribute that is used to specify the versions of
+ * the TLS protocol supported by the server, formatted in camel case.
+ */
+ public static final String ATTR_SUPPORTED_TLS_PROTOCOLS =
+ "supportedTLSProtocols";
+
+
+
+ /**
+ * The name of the standard attribute that is used to specify the versions of
+ * the TLS protocol supported by the server, formatted in lower case.
+ */
+ public static final String ATTR_SUPPORTED_TLS_PROTOCOLS_LC =
+ "supportedtlsprotocols";
+
+
+
+ /**
+ * The name of the standard attribute that is used to specify the the TLS
+ * ciphers supported by the server, formatted in camel case.
+ */
+ public static final String ATTR_SUPPORTED_TLS_CIPHERS =
+ "supportedTLSCiphers";
+
+
+
+ /**
+ * The name of the standard attribute that is used to specify the the TLS
+ * ciphers supported by the server, formatted in lower case.
+ */
+ public static final String ATTR_SUPPORTED_TLS_CIPHERS_LC =
+ "supportedtlsciphers";
+
+
+
+ /**
* The name of the attribute that is used to specify the time that the
* Directory Server started, formatted in camel case.
*/
--
Gitblit v1.10.0