Class AccessTokenIntrospectionProvider<T extends AccessToken>

java.lang.Object
org.keycloak.protocol.oidc.AccessTokenIntrospectionProvider<T>
All Implemented Interfaces:
TokenIntrospectionProvider, Provider
Direct Known Subclasses:
RefreshTokenIntrospectionProvider, RPTIntrospectionProvider

public class AccessTokenIntrospectionProvider<T extends AccessToken> extends Object implements TokenIntrospectionProvider
Author:
Pedro Igor
  • Field Details

  • Constructor Details

    • AccessTokenIntrospectionProvider

      public AccessTokenIntrospectionProvider(KeycloakSession session)
  • Method Details

    • introspect

      public jakarta.ws.rs.core.Response introspect(String tokenStr, EventBuilder eventBuilder)
      Description copied from interface: TokenIntrospectionProvider
      Introspect the token.
      Specified by:
      introspect in interface TokenIntrospectionProvider
      Parameters:
      tokenStr - the token to introspect.
      Returns:
      the response with the information about the token
    • transformAccessToken

      public AccessToken transformAccessToken(AccessToken token, UserSessionModel userSession)
    • introspectionChecks

      protected boolean introspectionChecks(String tokenStr)
      Performs introspection checks related to token, client, userSession, user etc. If some of the checks failed, this method is supposed to already set an error event. If all the checks are successful, the instance variables are supposed to be set
      Returns:
      true just if all the checks are working
    • verifyToken

      protected boolean verifyToken(String tokenStr)
    • getTokenClass

      protected Class<T> getTokenClass()
    • verifyClient

      protected boolean verifyClient()
    • verifyUserSession

      protected UserSessionUtil.UserSessionValidationResult verifyUserSession()
    • verifyTokenReuse

      protected boolean verifyTokenReuse()
    • close

      public void close()
      Specified by:
      close in interface Provider