Example usage for org.springframework.security.config.annotation.authentication.builders AuthenticationManagerBuilder AuthenticationManagerBuilder

List of usage examples for org.springframework.security.config.annotation.authentication.builders AuthenticationManagerBuilder AuthenticationManagerBuilder

Introduction

In this page you can find the example usage for org.springframework.security.config.annotation.authentication.builders AuthenticationManagerBuilder AuthenticationManagerBuilder.

Prototype

AuthenticationManagerBuilder

Source Link

Usage

From source file:net.przemkovv.sphinx.config.SecurityConfig.java

@Override
@Bean/*from  www  . j  ava2 s.c  om*/
public AuthenticationManager authenticationManager() throws Exception {
    return new AuthenticationManagerBuilder().userDetailsService(customUserDetailsService)
            .passwordEncoder(new ShaPasswordEncoder()).and().build();
}