Class IntrospectionWebService


  • @Path("/introspection")
    public class IntrospectionWebService
    extends Object
    Version:
    September 30, 2021
    Author:
    Yuriy Zabrovarnyy
    • Constructor Detail

      • IntrospectionWebService

        public IntrospectionWebService()
    • 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)