Class HttpBasicServerAuthenticationEntryPoint
java.lang.Object
org.springframework.security.web.server.authentication.HttpBasicServerAuthenticationEntryPoint
- All Implemented Interfaces:
 ServerAuthenticationEntryPoint
public class HttpBasicServerAuthenticationEntryPoint
extends Object
implements ServerAuthenticationEntryPoint
Prompts a user for HTTP Basic authentication.
- Since:
 - 5.0
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>commence(org.springframework.web.server.ServerWebExchange exchange, AuthenticationException ex) Initiates the authentication flowvoidSets the realm to be used 
- 
Constructor Details
- 
HttpBasicServerAuthenticationEntryPoint
public HttpBasicServerAuthenticationEntryPoint() 
 - 
 - 
Method Details
- 
commence
public reactor.core.publisher.Mono<Void> commence(org.springframework.web.server.ServerWebExchange exchange, AuthenticationException ex) Description copied from interface:ServerAuthenticationEntryPointInitiates the authentication flow- Specified by:
 commencein interfaceServerAuthenticationEntryPoint- Returns:
 Mono<Void>to indicate when the request for authentication is complete
 - 
setRealm
Sets the realm to be used- Parameters:
 realm- the realm. Default is "Realm"
 
 -