Interface ExpectationCallback<T extends HttpMessage>

All Known Subinterfaces:
ExpectationForwardAndResponseCallback, ExpectationForwardCallback, ExpectationResponseCallback
All Known Implementing Classes:
CallbackActionExamples.TestExpectationForwardCallback, CallbackActionExamples.TestExpectationResponseCallback, PrecannedTestExpectationForwardCallbackRequest, PrecannedTestExpectationForwardCallbackRequestAndResponse, PrecannedTestExpectationResponseCallback, StaticTestExpectationResponseCallback

public interface ExpectationCallback<T extends HttpMessage>
Author:
jamesdbloom
  • Method Summary

    Modifier and Type
    Method
    Description
    handle(HttpRequest httpRequest)
    Called for every request when expectation condition has been satisfied.
  • Method Details

    • handle

      T handle(HttpRequest httpRequest) throws Exception
      Called for every request when expectation condition has been satisfied. The request that satisfied the expectation condition is passed as the parameter and the return value is the request that will be proxied or returned.
      Parameters:
      httpRequest - the request that satisfied the expectation condition
      Returns:
      the request that will be proxied or the response that will be returned
      Throws:
      Exception