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

neil_a_wilson
01.49.2007 9b88d8643e4f7a311d2b228d2bce5c043bba82b5
opends/src/server/org/opends/server/extensions/BlindTrustManagerProvider.java
@@ -32,7 +32,7 @@
import javax.net.ssl.TrustManager;
import javax.net.ssl.X509TrustManager;
import org.opends.server.admin.std.server.TrustManagerCfg;
import org.opends.server.admin.std.server.BlindTrustManagerCfg;
import org.opends.server.api.TrustManagerProvider;
import org.opends.server.config.ConfigException;
import org.opends.server.types.DirectoryException;
@@ -40,7 +40,6 @@
/**
 * This class provides an implementation of a trust manager provider that will
 * indicate that any certificate presented should be blindly trusted by the
@@ -50,12 +49,9 @@
 * trustworthy.
 */
public class BlindTrustManagerProvider
       extends TrustManagerProvider<TrustManagerCfg>
       extends TrustManagerProvider<BlindTrustManagerCfg>
       implements X509TrustManager
{
  /**
   * Creates a new instance of this blind trust manager provider.  The
   * <CODE>initializeTrustManagerProvider</CODE> method must be called on the
@@ -72,7 +68,7 @@
   * {@inheritDoc}
   */
  @Override()
  public void initializeTrustManagerProvider(TrustManagerCfg configuration)
  public void initializeTrustManagerProvider(BlindTrustManagerCfg configuration)
         throws ConfigException, InitializationException
  {
    // No implementation is required.