Package org.keycloak.protocol.oidc
Interface TokenIntrospectionProvider
-
- All Superinterfaces:
Provider
- All Known Implementing Classes:
AccessTokenIntrospectionProvider
,RefreshTokenIntrospectionProvider
,RPTIntrospectionProvider
public interface TokenIntrospectionProvider extends Provider
Provides introspection for a determined OAuth2 token type.- Author:
- Pedro Igor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Response
introspect(String token)
Introspect thetoken
.
-
-
-
Method Detail
-
introspect
javax.ws.rs.core.Response introspect(String token)
Introspect thetoken
.- Parameters:
token
- the token to introspect.- Returns:
- the response with the information about the token
-
-