Class ServerFormLoginAuthenticationConverter
- java.lang.Object
-
- org.springframework.security.web.server.ServerFormLoginAuthenticationConverter
-
- All Implemented Interfaces:
java.util.function.Function<org.springframework.web.server.ServerWebExchange,reactor.core.publisher.Mono<Authentication>>
- Direct Known Subclasses:
ServerFormLoginAuthenticationConverter
@Deprecated public class ServerFormLoginAuthenticationConverter extends java.lang.Object implements java.util.function.Function<org.springframework.web.server.ServerWebExchange,reactor.core.publisher.Mono<Authentication>>
Deprecated.useServerFormLoginAuthenticationConverter
instead.Converts a ServerWebExchange into a UsernamePasswordAuthenticationToken from the form data HTTP parameters.- Since:
- 5.0
-
-
Constructor Summary
Constructors Constructor Description ServerFormLoginAuthenticationConverter()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description reactor.core.publisher.Mono<Authentication>
apply(org.springframework.web.server.ServerWebExchange exchange)
Deprecated.void
setPasswordParameter(java.lang.String passwordParameter)
Deprecated.The parameter name of the form data to extract the passwordvoid
setUsernameParameter(java.lang.String usernameParameter)
Deprecated.The parameter name of the form data to extract the username
-
-
-
Method Detail
-
apply
@Deprecated public reactor.core.publisher.Mono<Authentication> apply(org.springframework.web.server.ServerWebExchange exchange)
Deprecated.- Specified by:
apply
in interfacejava.util.function.Function<org.springframework.web.server.ServerWebExchange,reactor.core.publisher.Mono<Authentication>>
-
setUsernameParameter
public void setUsernameParameter(java.lang.String usernameParameter)
Deprecated.The parameter name of the form data to extract the username- Parameters:
usernameParameter
- the username HTTP parameter
-
setPasswordParameter
public void setPasswordParameter(java.lang.String passwordParameter)
Deprecated.The parameter name of the form data to extract the password- Parameters:
passwordParameter
- the password HTTP parameter
-
-