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

Java tutorial

Introduction

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

Source

package org.apache.http.protocol;

import org.apache.http.HttpException;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;

public interface HttpExpectationVerifier {
    void verify(HttpRequest httpRequest, HttpResponse httpResponse, HttpContext httpContext) throws HttpException;
}