Java org.springframework.security.config.annotation.authentication.builders AuthenticationManagerBuilder fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.security.config.annotation.authentication.builders AuthenticationManagerBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.security.config.annotation.authentication.builders AuthenticationManagerBuilder.

The text is from its open source code.

Field

Constructor

Method

Capply( C configurer)
Captures the UserDetailsService from any UserDetailsAwareConfigurer .
AuthenticationManagerBuilderauthenticationEventPublisher(AuthenticationEventPublisher eventPublisher)
Sets the AuthenticationEventPublisher
AuthenticationManagerBuilderauthenticationProvider(AuthenticationProvider authenticationProvider)
Add authentication based upon the custom AuthenticationProvider that is passed in.
Obuild()
Builds the object and returns it or null.
InMemoryUserDetailsManagerConfigurerinMemoryAuthentication()
Add in memory authentication to the AuthenticationManagerBuilder and return a InMemoryUserDetailsManagerConfigurer to allow customization of the in memory authentication.
JdbcUserDetailsManagerConfigurerjdbcAuthentication()
Add JDBC authentication to the AuthenticationManagerBuilder and return a JdbcUserDetailsManagerConfigurer to allow customization of the JDBC authentication.
LdapAuthenticationProviderConfigurerldapAuthentication()
Add LDAP authentication to the AuthenticationManagerBuilder and return a LdapAuthenticationProviderConfigurer to allow customization of the LDAP authentication.
DaoAuthenticationConfigureruserDetailsService( T userDetailsService)
Add authentication based upon the custom UserDetailsService that is passed in.