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

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

Introduction

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

Prototype

AuthenticationManager parentAuthenticationManager

To view the source code for org.springframework.security.config.annotation.authentication.builders AuthenticationManagerBuilder parentAuthenticationManager.

Click Source Link

Usage

From source file:org.moserp.infrastructure.authentication.LoginConfig.java

@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
    auth.parentAuthenticationManager(authenticationManager);
}