Package burp.api.montoya.http
Interface RequestResult
-
public interface RequestResultAn instance of this interface should be returned byHttpHandler.handleHttpRequest(burp.api.montoya.http.message.requests.HttpRequest, burp.api.montoya.core.Annotations, burp.api.montoya.core.ToolSource)if a customHttpHandlerhas been registered with Burp.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description Annotationsannotations()HttpRequestrequest()static RequestResultrequestResult(HttpRequest request, Annotations annotations)This is a helper method used to create a new instance ofRequestHandlerResult.
-
-
-
Method Detail
-
requestResult
static RequestResult requestResult(HttpRequest request, Annotations annotations)
This is a helper method used to create a new instance ofRequestHandlerResult.- Parameters:
request- An HTTP request.annotations- annotations.- Returns:
- A new
RequestHandlerResultinstance.
-
request
HttpRequest request()
- Returns:
- The HTTP request.
-
annotations
Annotations annotations()
- Returns:
- The annotations.
-
-