org.apache.http.protocol.HttpRequestHandler.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.http.protocol.HttpRequestHandler.java

Source

package org.apache.http.protocol;

import java.io.IOException;
import org.apache.http.HttpException;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;

public interface HttpRequestHandler {
    void handle(HttpRequest httpRequest, HttpResponse httpResponse, HttpContext httpContext)
            throws HttpException, IOException;
}