Interface JWTGrantHandler

All Superinterfaces:
GrantHandler, Lifecycle
All Known Subinterfaces:
SelfIssuedJWTGrantHandler, ThirdPartyJWTGrantHandler

public interface JWTGrantHandler extends GrantHandler
Marker interface for JSON Web Token (JWT) bearer assertion grants handlers.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.nimbusds.oauth2.sdk.GrantType
    The handled grant type.
  • Method Summary

    Modifier and Type
    Method
    Description
    default com.nimbusds.oauth2.sdk.GrantType
    Returns the handled grant type.

    Methods inherited from interface com.nimbusds.openid.connect.provider.spi.Lifecycle

    init, isEnabled, shutdown
  • Field Details

    • GRANT_TYPE

      static final com.nimbusds.oauth2.sdk.GrantType GRANT_TYPE
      The handled grant type.
  • Method Details