Uses of Class
org.restlet.client.Response
-
Packages that use Response Package Description org.restlet.client Core classes of the API.org.restlet.client.resource Client and server resource classes.org.restlet.client.util Various utility classes. -
-
Uses of Response in org.restlet.client
Methods in org.restlet.client with parameters of type Response Modifier and Type Method Description void
Request. commit(Response response)
Asks the server connector to immediately commit the given response associated to this request, making it ready to be sent back to the client.void
Client. handle(Request request, Response response)
void
Restlet. handle(Request request, Response response)
Handles a call.void
Restlet. handle(Request request, Response response, Uniform onResponseCallback)
Handles a call.void
Uniform. handle(Request request, Response response)
Handles a uniform call. -
Uses of Response in org.restlet.client.resource
Methods in org.restlet.client.resource that return Response Modifier and Type Method Description protected Response
ClientResource. createResponse(Request request)
Creates a new response for the given request.Response
Resource. getResponse()
Returns the handled response.Response
ResourceException. getResponse()
Returns the response associated to this exception.Response
ClientResource. handleOutbound(Request request)
Handles the outbound call by invoking the next handler.Methods in org.restlet.client.resource with parameters of type Response Modifier and Type Method Description void
ClientResource. doError(Status errorStatus, Request request, Response response)
By default, it throws a new resource exception.void
ClientResource. doError(Request request, Response response)
By default, it throws a new resource exception.protected void
ClientResource. handle(Request request, Response response, java.util.List<Reference> references, int retryAttempt, Uniform next)
Handle the call and follow redirection for safe methods.Representation
ClientResource. handleInbound(Response response)
Handles the inbound call.void
Resource. init(Context context, Request request, Response response)
Initialization method setting the environment of the current resource instance.protected void
ClientResource. redirect(Request request, Response response, java.util.List<Reference> references, int retryAttempt, Uniform next)
Effectively redirects a client call.protected void
ClientResource. retry(Request request, Response response, java.util.List<Reference> references, int retryAttempt, Uniform next)
Effectively retries a failed client call.void
Resource. setResponse(Response response)
Sets the handled response.Constructors in org.restlet.client.resource with parameters of type Response Constructor Description ClientResource(Context context, Request request, Response response)
Constructor.ClientResource(Request request, Response response)
Constructor.ResourceException(Status status, java.lang.Throwable cause, Request request, Response response)
Constructor.ResourceException(Status status, Request request, Response response)
Constructor. -
Uses of Response in org.restlet.client.util
Subclasses of Response in org.restlet.client.util Modifier and Type Class Description class
WrapperResponse
Request wrapper.Methods in org.restlet.client.util that return Response Modifier and Type Method Description protected Response
WrapperResponse. getWrappedResponse()
Returns the wrapped response.Methods in org.restlet.client.util with parameters of type Response Modifier and Type Method Description void
WrapperRequest. commit(Response response)
void
WrapperRestlet. handle(Request request, Response response)
Constructors in org.restlet.client.util with parameters of type Response Constructor Description WrapperResponse(Response wrappedResponse)
Constructor.
-