Uses of Class
org.forgerock.http.protocol.Response
-
Packages that use Response Package Description org.forgerock.audit.handlers.elasticsearch This package contains the ElasticsearchAuditEventHandler
implementation.org.forgerock.http Models and manages elements of the Hypertext Transfer Protocol.org.forgerock.http.filter CoreFilter
implementations.org.forgerock.http.handler CoreHandler
implementations.org.forgerock.http.header Processes HTTP message header fields.org.forgerock.http.protocol Models and manages elements of the Hypertext Transfer Protocol.org.forgerock.http.routing Provides routing functionality for HTTP requests.org.forgerock.http.session Provides interfaces for managing and interacting with HTTP Sessions.org.forgerock.http.spi HTTP service provider API.org.forgerock.http.swagger Classes to support OpenAPI API Descriptions using Swagger.org.forgerock.microservices.tokenvalidation This package will hold the classes need to implement the Token Validation Microservice.org.forgerock.openig.el Integrates with the Java Enterprise Edition Unified Expression Language API.org.forgerock.openig.filter Filters the requests and/or responses of HTTP.org.forgerock.openig.filter.finance Support for financial APIs (Open Banking, PSD2, Berlin Group, ...).org.forgerock.openig.filter.oauth2.client OAuth 2.0 Client filter implementation.org.forgerock.openig.filter.throttling This package contains the components used to implement a throttling rate support.org.forgerock.openig.handler Handles HTTP requests by generating responses.org.forgerock.openig.handler.resources Contains components and APIs used to serve static resources.org.forgerock.openig.handler.router Provides automated router capability that loads its configurations files (called routes) from a given directory.org.forgerock.openig.jwt Provides JWT capabilities to the Identity Gateway.org.forgerock.openig.openam Integration classes specifically for ForgeRock Access Management.org.forgerock.openig.sql Provides SQL and JDBC support. -
-
Uses of Response in org.forgerock.audit.handlers.elasticsearch
Methods in org.forgerock.audit.handlers.elasticsearch with parameters of type Response Modifier and Type Method Description protected static ResourceException
ElasticsearchAuditEventHandler. resourceException(String indexName, String topic, String resourceId, Response response)
Gets anException
Promise
containing an Elasticsearch HTTP response status and payload. -
Uses of Response in org.forgerock.http
Methods in org.forgerock.http that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
Filter. filter(Context context, Request request, Handler next)
Filters the request and/or response of an exchange.Promise<Response,NeverThrowsException>
Handler. handle(Context context, Request request)
Promise<Response,NeverThrowsException>
Client. send(Request request)
Sends an HTTP request and returns aPromise
representing the pending HTTP response.Promise<Response,NeverThrowsException>
Client. send(Context context, Request request)
Sends an HTTP request and returns aPromise
representing the pending HTTP response.Promise<Response,NeverThrowsException>
Client. sendWithoutClose(Request request)
Sends an HTTP request and returns aPromise
representing the pending HTTP response.Promise<Response,NeverThrowsException>
Client. sendWithoutClose(Context context, Request request)
Sends an HTTP request and returns aPromise
representing the pending HTTP response. -
Uses of Response in org.forgerock.http.filter
Methods in org.forgerock.http.filter that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
OptionsFilter. filter(Context context, Request request, Handler next)
Handles all OPTION requests to CREST resources, all other request methods are handled by theHandler
.Promise<Response,NeverThrowsException>
TransactionIdInboundFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
TransactionIdOutboundFilter. filter(Context context, Request request, Handler next)
-
Uses of Response in org.forgerock.http.handler
Methods in org.forgerock.http.handler that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
HttpClientHandler. handle(Context context, Request request)
Sends an HTTP request to a remote server and returns aPromise
representing the asynchronous response. -
Uses of Response in org.forgerock.http.header
Methods in org.forgerock.http.header with parameters of type Response Modifier and Type Method Description static SetCookie2Header
SetCookie2Header. valueOf(Response response)
Constructs a new header, initialized from the specified response message.static SetCookieHeader
SetCookieHeader. valueOf(Response response)
Constructs a new header, initialized from the specified response message.static WwwAuthenticateHeader
WwwAuthenticateHeader. valueOf(Response response)
Obtain aWwwAuthenticateHeader
representation of the headers in the given response. -
Uses of Response in org.forgerock.http.protocol
Methods in org.forgerock.http.protocol that return Response Modifier and Type Method Description Response
ResponseException. getResponse()
Returns the response associated to this exception.static Response
Responses. newInternalServerError()
Generates an empty Internal Server Error response (500).static Response
Responses. newInternalServerError(Exception exception)
Generates an Internal Server Error response (500) containing the cause of the error response.static Response
Responses. newNotFound()
Generates an empty Not Found response (404).Response
Response. setCause(Exception cause)
Link a 'caused by' exception to this response.Response
Response. setEntity(Object o)
Response
Response. setStatus(Status status)
Sets the response status code.Response
Response. setStreamingContent(boolean streamingContent)
Set that the response's content has to be considered as a streaming and thus some special treatments may apply on it.Response
Response. setVersion(String version)
Methods in org.forgerock.http.protocol that return types with arguments of type Response Modifier and Type Method Description static <E extends Exception>
AsyncFunction<E,Response,NeverThrowsException>Responses. internalServerError()
Utility method returning an async function that creates aResponse
with statusStatus.INTERNAL_SERVER_ERROR
and the exception set as the cause.static Promise<Response,NeverThrowsException>
Response. newResponsePromise(Response response)
Returns aPromise
representing theResponse
for an asynchronousRequest
which has already completed.static PromiseImpl<Response,NeverThrowsException>
Response. newResponsePromiseImpl()
static <E extends Exception>
Function<E,Response,NeverThrowsException>Responses. onExceptionInternalServerError()
Utility function that returns aResponse
whose status isStatus.INTERNAL_SERVER_ERROR
and the exception attached to the response as the cause.Methods in org.forgerock.http.protocol with parameters of type Response Modifier and Type Method Description static Promise<Response,NeverThrowsException>
Response. newResponsePromise(Response response)
Returns aPromise
representing theResponse
for an asynchronousRequest
which has already completed.Constructors in org.forgerock.http.protocol with parameters of type Response Constructor Description Response(Response response)
Creates a defensive copy of the givenresponse
message.ResponseException(Response response)
Constructs a ResponseException using the givenresponse
.ResponseException(Response response, String message, Throwable cause)
Constructs a ResponseException using the givenresponse
,message
and parentcause
. -
Uses of Response in org.forgerock.http.routing
Methods in org.forgerock.http.routing that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
ResourceApiVersionRoutingFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
Router. handle(Context context, Request request)
-
Uses of Response in org.forgerock.http.session
Methods in org.forgerock.http.session with parameters of type Response Modifier and Type Method Description void
Session. save(Response response)
Save the session state to the response.void
SessionManager. save(Session session, Response response)
Saves the session into the provided response. -
Uses of Response in org.forgerock.http.spi
Methods in org.forgerock.http.spi that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
HttpClient. sendAsync(Request request)
-
Uses of Response in org.forgerock.http.swagger
Methods in org.forgerock.http.swagger that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
OpenApiRequestFilter. filter(Context context, Request request, Handler next)
-
Uses of Response in org.forgerock.microservices.tokenvalidation
Methods in org.forgerock.microservices.tokenvalidation that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
IntrospectHandler. handle(Context context, Request request)
-
Uses of Response in org.forgerock.openig.el
Methods in org.forgerock.openig.el with parameters of type Response Modifier and Type Method Description static Bindings
Bindings. bindings(Context context, Request request, Response response)
-
Uses of Response in org.forgerock.openig.filter
-
Uses of Response in org.forgerock.openig.filter.finance
Methods in org.forgerock.openig.filter.finance that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
FapiInteractionIdFilter. filter(Context context, Request request, Handler next)
-
Uses of Response in org.forgerock.openig.filter.oauth2.client
Methods in org.forgerock.openig.filter.oauth2.client that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
ClientRegistrationFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
DiscoveryFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
IdTokenValidationFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
OAuth2ClientFilter. filter(Context context, Request request, Handler next)
Methods in org.forgerock.openig.filter.oauth2.client with parameters of type Response Modifier and Type Method Description static OAuth2BearerWWWAuthenticateHeader
OAuth2BearerWWWAuthenticateHeader. valueOf(Response message)
Constructs a new header, initialized from the specified message. -
Uses of Response in org.forgerock.openig.filter.throttling
Methods in org.forgerock.openig.filter.throttling that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
ThrottlingFilter. filter(Context context, Request request, Handler next)
-
Uses of Response in org.forgerock.openig.handler
Methods in org.forgerock.openig.handler that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
ClientHandler. handle(Context context, Request request)
Promise<Response,NeverThrowsException>
DesKeyGenHandler. handle(Context context, Request request)
Promise<Response,NeverThrowsException>
DispatchHandler. handle(Context context, Request request)
Promise<Response,NeverThrowsException>
ReverseProxyHandler. handle(Context context, Request request)
Promise<Response,NeverThrowsException>
ScriptableHandler. handle(Context context, Request request)
Promise<Response,NeverThrowsException>
SequenceHandler. handle(Context context, Request request)
Promise<Response,NeverThrowsException>
StaticResponseHandler. handle(Context context, Request request)
Promise<Response,NeverThrowsException>
WelcomeHandler. handle(Context context, Request request)
-
Uses of Response in org.forgerock.openig.handler.resources
Methods in org.forgerock.openig.handler.resources that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
ResourceHandler. handle(Context context, Request request)
-
Uses of Response in org.forgerock.openig.handler.router
Methods in org.forgerock.openig.handler.router that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
NullResponseFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
RouterHandler. handle(Context context, Request request)
-
Uses of Response in org.forgerock.openig.jwt
Methods in org.forgerock.openig.jwt with parameters of type Response Modifier and Type Method Description void
JwtCookieSession. save(Response response)
void
JwtSessionManager. save(Session session, Response response)
-
Uses of Response in org.forgerock.openig.openam
Methods in org.forgerock.openig.openam that return types with arguments of type Response Modifier and Type Method Description protected abstract Promise<Response,NeverThrowsException>
AbstractConditionAdviceFilter. doRedirect(Context context, Request request, Handler next, List<org.forgerock.openig.openam.AbstractConditionAdviceFilter.Advice> advices)
Handle redirect to theinstance
to verify the required advices.protected Promise<Response,NeverThrowsException>
CdSsoConditionAdviceFilter. doRedirect(Context context, Request request, Handler next, List<org.forgerock.openig.openam.AbstractConditionAdviceFilter.Advice> advices)
Promise<Response,NeverThrowsException>
AbstractConditionAdviceFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
CapturedUserPasswordFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
CrossDomainSingleSignOnFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
DeprecatedUserProfileFilter. filter(Context context, Request request, Handler next)
Deprecated.Promise<Response,NeverThrowsException>
PolicyEnforcementFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
SessionInfoFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
SingleSignOnFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
TokenTransformationFilter. filter(Context context, Request request, Handler next)
Promise<Response,NeverThrowsException>
UserProfileFilter. filter(Context context, Request request, Handler next)
-
Uses of Response in org.forgerock.openig.sql
Methods in org.forgerock.openig.sql that return types with arguments of type Response Modifier and Type Method Description Promise<Response,NeverThrowsException>
SqlAttributesFilter. filter(Context context, Request request, Handler next)
-