Package burp.api.montoya.proxy
Interface ProxyHistoryFilter
-
public interface ProxyHistoryFilterExtensions can implement this interface and then callProxy.history(ProxyHistoryFilter)to get a filtered list of items in the Proxy history.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmatches(ProxyRequestResponse 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 Detail
-
matches
boolean matches(ProxyRequestResponse 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.- Parameters:
requestResponse- AProxyRequestResponseobject that extensions can use to determine whether the item should be included in the filtered list of items.- Returns:
- Return
trueif the item should be included in the filtered list of items.
-
-