Interface KeyStoreAccessDelegate


public interface KeyStoreAccessDelegate
This interface intercepts calls to KeyStoreAccess allowing to cache KeyStore in memory instead of deserialization on each request.
  • Method Details

    • read

      KeyStore read(KeyStoreAccess original)
      Must return null if KeyStore is absent.
      Parameters:
      original - Underlying class that can perform the operation
    • write

      void write(KeyStoreAccess original, KeyStore keyStore)
      Parameters:
      original - Underlying class that can perform the operation
      keyStore - KeyStore to save