Class BaseRevocationEndpoint

    • Constructor Detail

      • BaseRevocationEndpoint

        public BaseRevocationEndpoint()
    • Method Detail

      • handle

        public javax.ws.rs.core.Response handle​(com.authlete.common.api.AuthleteApi api,
                                                javax.ws.rs.core.MultivaluedMap<String,​String> parameters,
                                                String authorization)
        Handle a revocation request. This method is an alias of handle (api, parameters, authorization, null).
        Parameters:
        api - An implementation of AuthleteApi.
        parameters - The request parameters of a revocation request.
        authorization - The value of Authorization header.
        Returns:
        A response that should be returned to the client application.
      • handle

        public javax.ws.rs.core.Response handle​(com.authlete.common.api.AuthleteApi api,
                                                javax.ws.rs.core.MultivaluedMap<String,​String> parameters,
                                                String authorization,
                                                com.authlete.common.api.Options options)
        Handle a revocation request. This method is an alias of handle (api, parameters, authorization, null).
        Parameters:
        api - An implementation of AuthleteApi.
        parameters - The request parameters of a revocation request.
        authorization - The value of Authorization header.
        options - The request options for the /api/auth/revocation API.
        Returns:
        A response that should be returned to the client application.
        Since:
        2.82
      • handle

        public javax.ws.rs.core.Response handle​(com.authlete.common.api.AuthleteApi api,
                                                RevocationRequestHandler.Params params)
        Handle a revocation request. This method is an alias of handle(api, params, null).
        Parameters:
        api - An implementation of AuthleteApi.
        params - Parameters for Authlete's /api/auth/revocation API.
        Returns:
        A response that should be returned to the client application.
        Since:
        2.79
      • handle

        public javax.ws.rs.core.Response handle​(com.authlete.common.api.AuthleteApi api,
                                                RevocationRequestHandler.Params params,
                                                com.authlete.common.api.Options options)
        Handle a revocation request.
        Parameters:
        api - An implementation of AuthleteApi.
        params - The request parameters for Authlete's /api/auth/revocation API.
        options - The request options for Authlete's /api/auth/revocation API.
        Returns:
        A response that should be returned to the client application.
        Since:
        2.82