Interface ServerAuthenticationEntryPoint
- All Known Implementing Classes:
 BearerTokenServerAuthenticationEntryPoint,DelegatingServerAuthenticationEntryPoint,HttpBasicServerAuthenticationEntryPoint,HttpStatusServerEntryPoint,RedirectServerAuthenticationEntryPoint
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
Used to request authentication
- Since:
 - 5.0
 
- 
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>commence(org.springframework.web.server.ServerWebExchange exchange, AuthenticationException ex) Initiates the authentication flow 
- 
Method Details
- 
commence
reactor.core.publisher.Mono<Void> commence(org.springframework.web.server.ServerWebExchange exchange, AuthenticationException ex) Initiates the authentication flow- Parameters:
 exchange-ex-- Returns:
 Mono<Void>to indicate when the request for authentication is complete
 
 -