use of org.keycloak.protocol.oidc.endpoints.TokenRevocationEndpoint in project keycloak by keycloak.
the class OIDCLoginProtocolService method revoke.
@Path("revoke")
public Object revoke() {
TokenRevocationEndpoint endpoint = new TokenRevocationEndpoint(realm, event);
ResteasyProviderFactory.getInstance().injectProperties(endpoint);
return endpoint;
}
Aggregations