Interface RpcEncryptionPasswordResolver
public interface RpcEncryptionPasswordResolver
Interface representing a resolver for the password used to encrypt RPC communication.
- Since:
- 8.5.0
- Author:
- Norman Lorenz
-
Method Summary
Modifier and TypeMethodDescriptionchar[]resolvePassword(String passwordHint) Resolves the password based on the provided password hint.
-
Method Details
-
resolvePassword
Resolves the password based on the provided password hint.- Parameters:
passwordHint- The hint used to resolve the password.- Returns:
- The resolved password for RPC encryption.
- Throws:
IllegalArgumentException- If the provided password hint is unsupported.UnsupportedOperationException- If the password resolution for the given hint is not implemented.
-