private HttpForwardActionHandler httpForwardActionHandler;
private HttpCallbackActionHandler httpCallbackActionHandler;
private HttpResponseActionHandler httpResponseActionHandler;
public ActionHandler(LogFilter logFilter) {
Filters filters = new Filters();
filters.withFilter(new org.mockserver.model.HttpRequest(), new HopByHopHeaderFilter());
filters.withFilter(new org.mockserver.model.HttpRequest(), logFilter);
httpResponseActionHandler = new HttpResponseActionHandler(filters);
httpCallbackActionHandler = new HttpCallbackActionHandler(filters);
httpForwardActionHandler = new HttpForwardActionHandler(filters);
}