Class IntrospectionWebService
java.lang.Object
io.jans.as.server.introspection.ws.rs.IntrospectionWebService
- Version:
- September 30, 2021
- Author:
- Yuriy Zabrovarnyy
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionjakarta.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)
-
Constructor Details
-
IntrospectionWebService
public IntrospectionWebService()
-
-
Method Details
-
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)
-