| | |
| | | */ |
| | | 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 |
| | |
| | | // No implementation is required. |
| | | } |
| | | |
| | | |
| | | |
| | | /** {@inheritDoc} */ |
| | | @Override |
| | | public void initializeKeyManagerProvider( |
| | | KeyManagerProviderCfg configuration) throws ConfigException, |
| | |
| | | // 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. |
| | |
| | | * @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]; |
| | | } |
| | | } |
| | | |