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.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    List<org.springframework.jdbc.core.SqlParameterValue>
    apply(RegisteredClient registeredClient)
     
    protected final com.fasterxml.jackson.databind.ObjectMapper
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    final void
    setObjectMapper(com.fasterxml.jackson.databind.ObjectMapper objectMapper)
    Deprecated, for removal: This API element is subject to removal in a future version.
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface java.util.function.Function

    andThen, compose
  • 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>>