Class JdbcRegisteredClientRepository.RegisteredClientParametersMapper

java.lang.Object
org.springframework.security.oauth2.server.authorization.client.JdbcRegisteredClientRepository.RegisteredClientParametersMapper
All Implemented Interfaces:
Function<RegisteredClient, List<org.springframework.jdbc.core.SqlParameterValue>>
Enclosing class:
JdbcRegisteredClientRepository

@Deprecated(forRemoval=true, since="7.0") public static class JdbcRegisteredClientRepository.RegisteredClientParametersMapper extends Object
Deprecated, for removal: This API element is subject to removal in a future version.
A Function that maps RegisteredClient to a List of SqlParameterValue using an instance of Jackson 2's ObjectMapper.
Since:
7.0
  • Constructor Details

    • RegisteredClientParametersMapper

      public RegisteredClientParametersMapper()
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • setObjectMapper

      public final void setObjectMapper(com.fasterxml.jackson.databind.ObjectMapper objectMapper)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • getObjectMapper

      protected final com.fasterxml.jackson.databind.ObjectMapper getObjectMapper()
      Deprecated, for removal: This API element is subject to removal in a future version.
    • apply

      public List<org.springframework.jdbc.core.SqlParameterValue> apply(RegisteredClient registeredClient)
      Specified by:
      apply in interface Function<RegisteredClient, List<org.springframework.jdbc.core.SqlParameterValue>>