Package burp.api.montoya.proxy
Interface ProxyWebSocketHistoryFilter
public interface ProxyWebSocketHistoryFilter
Extensions can implement this interface and then call
Proxy.webSocketHistory(ProxyWebSocketHistoryFilter)
to get a filtered list of items in
the Proxy WebSockets history.-
Method Summary
Modifier and TypeMethodDescriptionboolean
matches
(ProxyWebSocketMessage message) This method is invoked for every item in the Proxy WebSockets 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 WebSockets history to determine whether it should be included in the filtered list of items.- Parameters:
message
- AProxyWebSocketMessage
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.
-