Package burp.api.montoya.proxy
Interface ProxyRequestResponse
-
public interface ProxyRequestResponseThis interface represents an instance of an HTTP request and response intercepted by the Proxy.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HttpRequestfinalRequest()This method retrieves the HTTP request that was issued by Burp Proxy.AnnotationsmessageAnnotations()This method retrieves the annotations for the request/response pair.HttpResponseoriginalResponse()This method retrieves the HTTP response that was received by Burp Proxy.
-
-
-
Method Detail
-
messageAnnotations
Annotations messageAnnotations()
This method retrieves the annotations for the request/response pair.- Returns:
- The
Annotationsfor the request/response pair.
-
finalRequest
HttpRequest finalRequest()
This method retrieves the HTTP request that was issued by Burp Proxy.- Returns:
- The
HttpRequestthat was issued by Burp Proxy.
-
originalResponse
HttpResponse originalResponse()
This method retrieves the HTTP response that was received by Burp Proxy.- Returns:
- The
HttpResponsethat was received by Burp Proxy.
-
-