final HttpRequestImpl copyOriginal = new HttpRequestImpl(originalRequest);
removeAllHeaderParams(copyOriginal);
final HttpRequestImpl copyOther = new HttpRequestImpl(otherRequest);
removeAllHeaderParams(copyOther);
final HttpResponse newResponse = new HttpResponseImpl(201, "application/json", null);
return new HttpRequestMatchingContextImpl(copyOriginal, copyOther, newResponse);
}
return context;
}