Interface RequestToBeSentAction


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

    • action

      default RequestAction action()
      Returns:
      the action.
    • request

      HttpRequest request()
      Returns:
      The HTTP request.
    • annotations

      Annotations annotations()
      Returns:
      The annotations.
    • continueWith

      static RequestToBeSentAction continueWith(HttpRequest request)
      Create a new instance of RequestResult. Annotations will not be modified.
      Parameters:
      request - An HTTP request.
      Returns:
      A new RequestHandlerResult instance.
    • continueWith

      static RequestToBeSentAction continueWith(HttpRequest request, Annotations annotations)
      Create a new instance of RequestResult.
      Parameters:
      request - An HTTP request.
      annotations - modified annotations.
      Returns:
      A new RequestHandlerResult instance.