Package org.apache.http.protocol
Interface HttpRequestHandlerMapper
- All Known Implementing Classes:
UriHttpRequestHandlerMapper
public interface HttpRequestHandlerMapper
HttpRequestHandlerMapper can be used to resolve an instance of
HttpRequestHandler matching a particular HttpRequest. Usually the
mapped request handler will be used to process the request.- Since:
- 4.3
-
Method Summary
Modifier and TypeMethodDescriptionlookup(HttpRequest request) Looks up a handler matching the given request.
-
Method Details
-
lookup
Looks up a handler matching the given request.- Parameters:
request- the request to map to a handler- Returns:
- HTTP request handler or
nullif no match is found.
-