From 61b9eb1be03fc03a9f4bb0013a08ff44a1059503 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 20 Apr 2016 14:25:46 +0000
Subject: [PATCH] opendj-server-legacy: added @Override + Autorefactor'ed comments

---
 opendj-server-legacy/src/main/java/org/opends/server/extensions/DigestMD5SASLMechanismHandler.java |   22 ----------------------
 1 files changed, 0 insertions(+), 22 deletions(-)

diff --git a/opendj-server-legacy/src/main/java/org/opends/server/extensions/DigestMD5SASLMechanismHandler.java b/opendj-server-legacy/src/main/java/org/opends/server/extensions/DigestMD5SASLMechanismHandler.java
index 3a4947c..deffcbe 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/extensions/DigestMD5SASLMechanismHandler.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/extensions/DigestMD5SASLMechanismHandler.java
@@ -52,7 +52,6 @@
 public class DigestMD5SASLMechanismHandler
       extends SASLMechanismHandler<DigestMD5SASLMechanismHandlerCfg>
       implements ConfigurationChangeListener<DigestMD5SASLMechanismHandlerCfg> {
-
   private static final LocalizedLogger logger = LocalizedLogger.getLoggerForThisClass();
 
   /** The current configuration for this SASL mechanism handler. */
@@ -73,7 +72,6 @@
   /** Property used to set the realm in the environment. */
   private static final String REALM_PROPERTY = "com.sun.security.sasl.digest.realm";
 
-
   /**
    * Creates a new instance of this SASL mechanism handler.  No initialization
    * should be done in this method, as it should all be performed in the
@@ -84,8 +82,6 @@
     super();
   }
 
-
-  /** {@inheritDoc} */
   @Override
   public void initializeSASLMechanismHandler(
           DigestMD5SASLMechanismHandlerCfg configuration)
@@ -117,16 +113,12 @@
       }
   }
 
-
-  /** {@inheritDoc} */
   @Override
   public void finalizeSASLMechanismHandler() {
     configuration.removeDigestMD5ChangeListener(this);
     DirectoryServer.deregisterSASLMechanismHandler(SASL_MECHANISM_DIGEST_MD5);
   }
 
-
-  /** {@inheritDoc} */
   @Override
   public void processSASLBind(BindOperation bindOp) {
       ClientConnection clientConnection = bindOp.getClientConnection();
@@ -159,8 +151,6 @@
       }
   }
 
-
-  /** {@inheritDoc} */
   @Override
   public boolean isPasswordBased(String mechanism)
   {
@@ -168,9 +158,6 @@
     return true;
   }
 
-
-
-  /** {@inheritDoc} */
   @Override
   public boolean isSecure(String mechanism)
   {
@@ -178,8 +165,6 @@
     return true;
   }
 
-
-  /** {@inheritDoc} */
   @Override
   public boolean isConfigurationAcceptable(
                       SASLMechanismHandlerCfg configuration,
@@ -190,8 +175,6 @@
     return isConfigurationChangeAcceptable(config, unacceptableReasons);
   }
 
-
-  /** {@inheritDoc} */
   @Override
   public boolean isConfigurationChangeAcceptable(
                       DigestMD5SASLMechanismHandlerCfg configuration,
@@ -200,8 +183,6 @@
     return true;
   }
 
-
-  /** {@inheritDoc} */
   @Override
   public ConfigChangeResult applyConfigurationChange(
           DigestMD5SASLMechanismHandlerCfg configuration)
@@ -231,7 +212,6 @@
       return ccr;
   }
 
-
   /**
    * Retrieves the QOP (quality-of-protection) from the specified
    * configuration.
@@ -251,7 +231,6 @@
       }
   }
 
-
   /**
    * Returns the fully qualified name either defined in the configuration, or,
    * determined by examining the system configuration.
@@ -271,7 +250,6 @@
       return serverName;
   }
 
-
   /**
    * Retrieve the realm either defined in the specified configuration. If this
    * isn't defined, the SaslServer internal code uses the server name.

--
Gitblit v1.10.0