Interface ResponseReceivedAction


public interface ResponseReceivedAction
An instance of this interface should be returned by HttpHandler.handleHttpResponseReceived(burp.api.montoya.http.handler.HttpResponseReceived) if a custom HttpHandler has been registered with Burp.
  • Method Details

    • action

      default ResponseAction action()
      Returns:
      the action.
    • response

      HttpResponse response()
      Returns:
      The HTTP response.
    • annotations

      Annotations annotations()
      Returns:
      The annotations.
    • continueWith

      static ResponseReceivedAction continueWith(HttpResponse response)
      Create a new instance of ResponseResult. Annotations will not be modified.
      Parameters:
      response - An HTTP response.
      Returns:
      A new ResponseResult instance.
    • continueWith

      static ResponseReceivedAction continueWith(HttpResponse response, Annotations annotations)
      Create a new instance of ResponseResult.
      Parameters:
      response - An HTTP response.
      annotations - modified annotations.
      Returns:
      A new ResponseResult instance.