Class InMemoryAuthenticator

java.lang.Object
org.frankframework.lifecycle.servlets.AbstractServletAuthenticator
org.frankframework.lifecycle.servlets.InMemoryAuthenticator
All Implemented Interfaces:
IAuthenticator, org.springframework.beans.factory.Aware, org.springframework.context.ApplicationContextAware

public class InMemoryAuthenticator extends AbstractServletAuthenticator
Authenticator for in-memory authentication.

This authenticator provides a simple way to authenticate using a single username and password stored in memory.

This authenticator should be configured by setting its type to 'IN_MEMORY', for example:

application.security.console.authentication.type=IN_MEMORY
application.security.console.authentication.username=admin
application.security.console.authentication.password=secret

  • Constructor Details

    • InMemoryAuthenticator

      public InMemoryAuthenticator()
  • Method Details

    • configure

      public org.springframework.security.web.SecurityFilterChain configure(org.springframework.security.config.annotation.web.builders.HttpSecurity http)
      Description copied from class: AbstractServletAuthenticator
      Before building, configure the FilterChain.
      Specified by:
      configure in class AbstractServletAuthenticator