Class RedirectProtocolHandler
- All Implemented Interfaces:
EventListener
,Response.AsyncContentListener
,Response.BeginListener
,Response.CompleteListener
,Response.ContentListener
,Response.DemandedContentListener
,Response.FailureListener
,Response.HeaderListener
,Response.HeadersListener
,Response.Listener
,Response.ResponseListener
,Response.SuccessListener
,ProtocolHandler
A protocol handler that handles redirect status codes 301, 302, 303, 307 and 308.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.jetty.client.api.Response.Listener
Response.Listener.Adapter
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Inspects the givenrequest
andresponse
to detect whether this protocol handler should handle them.getName()
void
onComplete
(Result result) Callback method invoked when the request and the response have been processed, either successfully or not.boolean
Callback method invoked when a response header has been received and parsed, returning whether the header should be processed or not.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.jetty.client.api.Response.AsyncContentListener
onContent
Methods inherited from interface org.eclipse.jetty.client.api.Response.ContentListener
onContent
Methods inherited from interface org.eclipse.jetty.client.api.Response.DemandedContentListener
onBeforeContent
-
Field Details
-
NAME
- See Also:
-
-
Constructor Details
-
RedirectProtocolHandler
-
-
Method Details
-
getName
- Specified by:
getName
in interfaceProtocolHandler
- Returns:
- a unique name among protocol handlers
-
accept
Description copied from interface:ProtocolHandler
Inspects the given
request
andresponse
to detect whether this protocol handler should handle them.For example, a redirect protocol handler can inspect the response code and return true if it is a redirect response code.
This method is being called just after the response line has been parsed, and before the response headers are available.
- Specified by:
accept
in interfaceProtocolHandler
- Parameters:
request
- the request to acceptresponse
- the response to accept- Returns:
- true if this protocol handler can handle the given request and response
-
getResponseListener
- Specified by:
getResponseListener
in interfaceProtocolHandler
- Returns:
- a response listener that will handle the request and response on behalf of the application.
-
onHeader
Description copied from interface:Response.HeaderListener
Callback method invoked when a response header has been received and parsed, returning whether the header should be processed or not.- Specified by:
onHeader
in interfaceResponse.HeaderListener
- Specified by:
onHeader
in interfaceResponse.Listener
- Parameters:
response
- the response containing the response line data and the headers so farfield
- the header received- Returns:
- true to process the header, false to skip processing of the header
-
onComplete
Description copied from interface:Response.CompleteListener
Callback method invoked when the request and the response have been processed, either successfully or not.The
result
parameter contains the request, the response, and eventual failures.Requests may complete after response, for example in case of big uploads that are discarded or read asynchronously by the server. This method is always invoked after
Response.SuccessListener.onSuccess(Response)
orResponse.FailureListener.onFailure(Response, Throwable)
, and only when request indicates that it is completed.- Specified by:
onComplete
in interfaceResponse.CompleteListener
- Specified by:
onComplete
in interfaceResponse.Listener
- Parameters:
result
- the result of the request / response exchange
-