
com.nimbusds.openid.connect.provider.spi.grants.JWTGrantHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of c2id-server-sdk Show documentation
Show all versions of c2id-server-sdk Show documentation
Toolkit for developing Connect2id Server extensions, such as
custom OpenID Connect claims sources and grant handlers.
package com.nimbusds.openid.connect.provider.spi.grants;
import com.nimbusds.oauth2.sdk.GrantType;
/**
* Marker interface for JSON Web Token (JWT) bearer assertion grants handlers.
*/
public interface JWTGrantHandler extends GrantHandler {
/**
* The handled grant type.
*/
GrantType GRANT_TYPE = GrantType.JWT_BEARER;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy