Package io.jans.as.client.service
Interface IntrospectionService
-
public interface IntrospectionServiceIntrospection service.- Version:
- 0.9, 17/09/2013
- Author:
- Yuriy Zabrovarnyy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.fasterxml.jackson.databind.JsonNodeintrospect(String p_authorization, String p_token)io.jans.as.model.common.IntrospectionResponseintrospectToken(String p_authorization, String p_token)Returns introspection response for specified token.StringintrospectTokenWithResponseAsJwt(String p_authorization, String p_token, boolean responseAsJwt)
-
-
-
Method Detail
-
introspectToken
@POST @Consumes("application/json") @Produces("application/json") io.jans.as.model.common.IntrospectionResponse introspectToken(@HeaderParam("Authorization") String p_authorization, @FormParam("token") String p_token)Returns introspection response for specified token.- Parameters:
p_authorization- authorization tokenp_token- token to introspect- Returns:
- introspection response
-
introspectTokenWithResponseAsJwt
@POST @Consumes("application/json") @Produces("application/json") String introspectTokenWithResponseAsJwt(@HeaderParam("Authorization") String p_authorization, @FormParam("token") String p_token, @FormParam("response_as_jwt") boolean responseAsJwt)
-
-