Package burp.api.montoya.proxy
Interface ProxyHistoryFilter
public interface ProxyHistoryFilter
Extensions can implement this interface and then call
Proxy.history(ProxyHistoryFilter)
to get a filtered list of items in
the Proxy history.-
Method Summary
Modifier and TypeMethodDescriptionboolean
matches
(ProxyHttpRequestResponse requestResponse) This method is invoked for every item in the Proxy history to determine whether it should be included in the filtered list of items.
-
Method Details
-
matches
This method is invoked for every item in the Proxy history to determine whether it should be included in the filtered list of items.- Parameters:
requestResponse
- AProxyHttpRequestResponse
object that extensions can use to determine whether the item should be included in the filtered list of items.- Returns:
- Return
true
if the item should be included in the filtered list of items.
-