From 139c40de1bc595ccd4b8ca952da9e2a37bc8a18e Mon Sep 17 00:00:00 2001
From: dugan <dugan@localhost>
Date: Wed, 05 Nov 2008 13:22:43 +0000
Subject: [PATCH] These fixes add confidentiality/integrity to the SASL GSSAPI and DIGEST-MD5 mechanisms. The issue links:

---
 opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java b/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java
index 20f857b..7b26abc 100644
--- a/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java
+++ b/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java
@@ -339,6 +339,15 @@
   /**
    * {@inheritDoc}
    */
+  @Override
+  public boolean isActive() {
+      //This provider is always active.
+      return true;
+  }
+
+  /**
+   * {@inheritDoc}
+   */
   @Override()
   public ConnectionSecurityProvider newInstance(ClientConnection
                                                       clientConnection,

--
Gitblit v1.10.0