Example usage for org.springframework.security.config.annotation AbstractConfiguredSecurityBuilder subclass-usage

List of usage examples for org.springframework.security.config.annotation AbstractConfiguredSecurityBuilder subclass-usage

Introduction

In this page you can find the example usage for org.springframework.security.config.annotation AbstractConfiguredSecurityBuilder subclass-usage.

Usage

From source file org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder.java

/**
 * {@link SecurityBuilder} used to create an {@link AuthenticationManager}. Allows for
 * easily building in memory authentication, LDAP authentication, JDBC based
 * authentication, adding {@link UserDetailsService}, and adding
 * {@link AuthenticationProvider}'s.
 *

From source file org.springframework.security.config.annotation.web.builders.WebSecurity.java

/**
 * <p>
 * The {@link WebSecurity} is created by {@link WebSecurityConfiguration} to create the
 * {@link FilterChainProxy} known as the Spring Security Filter Chain
 * (springSecurityFilterChain). The springSecurityFilterChain is the {@link Filter} that
 * the {@link DelegatingFilterProxy} delegates to.