mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
23.26.2007 feb5d90ec016c99712f19c5485cf7633cd38f111
opends/src/server/org/opends/server/extensions/AnonymousSASLMechanismHandler.java
@@ -28,8 +28,8 @@
import org.opends.server.admin.std.server.SASLMechanismHandlerCfg;
import org.opends.server.api.SASLMechanismHandler;
import org.opends.server.config.ConfigEntry;
import org.opends.server.config.ConfigException;
import org.opends.server.core.BindOperation;
import org.opends.server.core.DirectoryServer;
@@ -55,11 +55,8 @@
 * then that trace information will be written to the server error log.
 */
public class AnonymousSASLMechanismHandler
       extends SASLMechanismHandler
       extends SASLMechanismHandler<SASLMechanismHandlerCfg>
{
  /**
   * 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
@@ -68,7 +65,6 @@
  public AnonymousSASLMechanismHandler()
  {
    super();
  }
@@ -77,7 +73,8 @@
   * {@inheritDoc}
   */
  @Override()
  public void initializeSASLMechanismHandler(ConfigEntry configEntry)
  public void initializeSASLMechanismHandler(SASLMechanismHandlerCfg
                                                  configuration)
         throws ConfigException, InitializationException
  {
    // No real implementation is required.  Simply register with the Directory