Example usage for org.springframework.security.config BeanIds AUTHENTICATION_MANAGER

List of usage examples for org.springframework.security.config BeanIds AUTHENTICATION_MANAGER

Introduction

In this page you can find the example usage for org.springframework.security.config BeanIds AUTHENTICATION_MANAGER.

Prototype

String AUTHENTICATION_MANAGER

To view the source code for org.springframework.security.config BeanIds AUTHENTICATION_MANAGER.

Click Source Link

Document

The "global" AuthenticationManager instance, registered by the <authentication-manager> element

Usage

From source file:org.apache.cxf.security.spring.AuthenticationManagerAwareBeanDefinitionParser.java

@Override
protected void doParse(Element element, ParserContext ctx, BeanDefinitionBuilder bean) {
    super.doParse(element, ctx, bean);
    bean.addPropertyReference("authenticationManager", BeanIds.AUTHENTICATION_MANAGER);
}