Package burp.api.montoya.http
Interface ResponseResult
-
public interface ResponseResultAn instance of this interface should be returned byHttpHandler.handleHttpResponse(burp.api.montoya.http.message.responses.HttpResponse, 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()HttpResponseresponse()static ResponseResultresponseResult(HttpResponse response, Annotations annotations)This is a helper method used to create a new instance ofResponseHandlerResult.
-
-
-
Method Detail
-
responseResult
static ResponseResult responseResult(HttpResponse response, Annotations annotations)
This is a helper method used to create a new instance ofResponseHandlerResult.- Parameters:
response- An HTTP response.annotations- annotations.- Returns:
- A new
ResponseHandlerResultinstance.
-
response
HttpResponse response()
- Returns:
- The HTTP response.
-
annotations
Annotations annotations()
- Returns:
- The annotations.
-
-