Class IntrospectionWebService
- java.lang.Object
-
- io.jans.as.server.introspection.ws.rs.IntrospectionWebService
-
@Path("/introspection") public class IntrospectionWebService extends Object- Version:
- September 30, 2021
- Author:
- Yuriy Zabrovarnyy
-
-
Constructor Summary
Constructors Constructor Description IntrospectionWebService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.ws.rs.core.ResponseintrospectGet(String authorization, String accept, String token, String tokenTypeHint, String responseAsJwt, jakarta.servlet.http.HttpServletRequest httpRequest, jakarta.servlet.http.HttpServletResponse httpResponse)jakarta.ws.rs.core.ResponseintrospectPost(String authorization, String accept, String token, String tokenTypeHint, String responseAsJwt, jakarta.servlet.http.HttpServletRequest httpRequest, jakarta.servlet.http.HttpServletResponse httpResponse)
-
-
-
Method Detail
-
introspectGet
@GET @Produces("application/json") public jakarta.ws.rs.core.Response introspectGet(@HeaderParam("Authorization") String authorization, @HeaderParam("Accept") String accept, @QueryParam("token") String token, @QueryParam("token_type_hint") String tokenTypeHint, @QueryParam("response_as_jwt") String responseAsJwt, @Context jakarta.servlet.http.HttpServletRequest httpRequest, @Context jakarta.servlet.http.HttpServletResponse httpResponse)
-
introspectPost
@POST @Produces("application/json") public jakarta.ws.rs.core.Response introspectPost(@HeaderParam("Authorization") String authorization, @HeaderParam("Accept") String accept, @FormParam("token") String token, @FormParam("token_type_hint") String tokenTypeHint, @FormParam("response_as_jwt") String responseAsJwt, @Context jakarta.servlet.http.HttpServletRequest httpRequest, @Context jakarta.servlet.http.HttpServletResponse httpResponse)
-
-