Interface ICredentialsFactory

All Known Implementing Classes:
StaticCredentialsFactory

public interface ICredentialsFactory
ICredentialsFactory is used to create Credentials objects to be used during node authentication before connection is accepted by the master node.
  • Method Details

    • init

      default void init(Properties properties)
      This method is (only) called if the factory instance is newly created from a class name provided in CredentialsFactoryConfig.
      Parameters:
      properties - factory properties defined in configuration
    • configure

      void configure(CallbackHandler callbackHandler)
      Parameters:
      callbackHandler - callback handler which can provide access to system internals
    • newCredentials

      Credentials newCredentials()
      Creates new Credentials object.
      Returns:
      the new Credentials object
    • newCredentials

      default Credentials newCredentials(Address address)
      Creates new Credentials object for given target Address.
      Parameters:
      address - Target Address (may be null)
      Returns:
    • destroy

      void destroy()