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/NullKeyManagerProvider.java
@@ -31,9 +31,6 @@
 */
public class NullKeyManagerProvider
       extends KeyManagerProvider<KeyManagerProviderCfg>{
  /**
   * Creates a new instance of this null key manager provider.  The
   * <CODE>initializeKeyManagerProvider</CODE> method must be called on the
@@ -44,9 +41,6 @@
    // No implementation is required.
  }
  /** {@inheritDoc} */
  @Override
  public void initializeKeyManagerProvider(
      KeyManagerProviderCfg configuration) throws ConfigException,
@@ -54,19 +48,12 @@
    // No implementation is required.
  }
  /**
   * Performs any finalization that may be necessary for this key manager
   * provider.
   */
  @Override
  public void finalizeKeyManagerProvider()
  {
    // No implementation is required.
  }
  /**
   * Retrieves a <CODE>KeyManager</CODE> object that may be used for
   * interactions requiring access to a key manager.
@@ -77,10 +64,10 @@
   * @throws  DirectoryException  If a problem occurs while attempting to obtain
   *                              the set of key managers.
   */
  @Override
  public KeyManager[] getKeyManagers()
         throws DirectoryException
  {
    return new KeyManager[0];
  }
}