001package com.nimbusds.openid.connect.provider.spi.grants;
002
003
004import com.nimbusds.oauth2.sdk.GrantType;
005
006
007/**
008 * Marker interface for JSON Web Token (JWT) bearer assertion grants handlers.
009 */
010public interface JWTGrantHandler extends GrantHandler {
011
012
013        /**
014         * The handled grant type.
015         */
016        GrantType GRANT_TYPE = GrantType.JWT_BEARER;
017}