Class IntrospectionWebService
- java.lang.Object
-
- org.gluu.oxauth.introspection.ws.rs.IntrospectionWebService
-
@Path("/introspection") public class IntrospectionWebService extends java.lang.Object
- Version:
- June 30, 2018
- Author:
- Yuriy Zabrovarnyy
-
-
Constructor Summary
Constructors Constructor Description IntrospectionWebService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Response
introspectGet(java.lang.String p_authorization, java.lang.String p_token, java.lang.String tokenTypeHint, java.lang.String responseAsJwt, javax.servlet.http.HttpServletRequest httpRequest, javax.servlet.http.HttpServletResponse httpResponse)
javax.ws.rs.core.Response
introspectPost(java.lang.String p_authorization, java.lang.String p_token, java.lang.String tokenTypeHint, java.lang.String responseAsJwt, javax.servlet.http.HttpServletRequest httpRequest, javax.servlet.http.HttpServletResponse httpResponse)
-
-
-
Method Detail
-
introspectGet
@GET @Produces("application/json") public javax.ws.rs.core.Response introspectGet(@HeaderParam("Authorization") java.lang.String p_authorization, @QueryParam("token") java.lang.String p_token, @QueryParam("token_type_hint") java.lang.String tokenTypeHint, @QueryParam("response_as_jwt") java.lang.String responseAsJwt, @Context javax.servlet.http.HttpServletRequest httpRequest, @Context javax.servlet.http.HttpServletResponse httpResponse)
-
introspectPost
@POST @Produces("application/json") public javax.ws.rs.core.Response introspectPost(@HeaderParam("Authorization") java.lang.String p_authorization, @FormParam("token") java.lang.String p_token, @FormParam("token_type_hint") java.lang.String tokenTypeHint, @FormParam("response_as_jwt") java.lang.String responseAsJwt, @Context javax.servlet.http.HttpServletRequest httpRequest, @Context javax.servlet.http.HttpServletResponse httpResponse)
-
-