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

Jean-Noël Rouvignac
20.42.2016 61b9eb1be03fc03a9f4bb0013a08ff44a1059503
opendj-server-legacy/src/main/java/org/opends/server/extensions/NullTrustManagerProvider.java
@@ -43,9 +43,7 @@
    // No implementation is required.
  }
  /** {@inheritDoc} */
  @Override
  public void initializeTrustManagerProvider(
                     TrustManagerProviderCfg configuration)
         throws ConfigException, InitializationException
@@ -53,19 +51,12 @@
    // No implementation is required.
  }
  /**
   * Performs any finalization that may be necessary for this trust manager
   * provider.
   */
  @Override
  public void finalizeTrustManagerProvider()
  {
    // No implementation is required.
  }
  /**
   * Retrieves a <CODE>TrustManager</CODE> object that may be used for
   * interactions requiring access to a trust manager.
@@ -76,10 +67,10 @@
   * @throws  DirectoryException  If a problem occurs while attempting to obtain
   *                              the set of trust managers.
   */
  @Override
  public TrustManager[] getTrustManagers()
         throws DirectoryException
  {
    return new TrustManager[0];
  }
}