* along to the matching host.
* @param matcher The {@link RequestMatcher} that matches the current request.
* @return A suitable {@link RequestHandler}.
*/
public synchronized RequestHandler getRequestHandler(RequestMatcher matcher) {
MockResponse mockResponse = mockResponses.get(matcher);
if (mockResponse != null) {
return mockFactory.create(mockResponse);
}