Package burp.api.montoya.http.handler
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 Summary
Modifier and TypeMethodDescriptiondefault ResponseAction
action()
static ResponseReceivedAction
continueWith
(HttpResponse response) Create a new instance ofResponseResult
.static ResponseReceivedAction
continueWith
(HttpResponse response, Annotations annotations) Create a new instance ofResponseResult
.response()
-
Method Details
-
action
- Returns:
- the action.
-
response
HttpResponse response()- Returns:
- The HTTP response.
-
annotations
Annotations annotations()- Returns:
- The annotations.
-
continueWith
Create a new instance ofResponseResult
. Annotations will not be modified.- Parameters:
response
- An HTTP response.- Returns:
- A new
ResponseResult
instance.
-
continueWith
Create a new instance ofResponseResult
.- Parameters:
response
- An HTTP response.annotations
- modified annotations.- Returns:
- A new
ResponseResult
instance.
-