Package burp.api.montoya.http
Interface RequestResponseSelection
public interface RequestResponseSelection
Provides access to user-selected content and its start and end points in HTTP requests and responses.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates whether user-selected content from the HTTP request is available.boolean
Indicates whether user-selected content from the HTTP response is available.Provides access to user-selected content and its start and end points from the HTTP request.Provides access to user-selected content and its start and end points from the HTTP response.
-
Method Details
-
requestSelection
Selection requestSelection()Provides access to user-selected content and its start and end points from the HTTP request.- Returns:
- The selection for the request.
-
responseSelection
Selection responseSelection()Provides access to user-selected content and its start and end points from the HTTP response.- Returns:
- The selection for the response.
-
hasRequestSelection
boolean hasRequestSelection()Indicates whether user-selected content from the HTTP request is available.- Returns:
- True if there is user-selected content from the HTTP request.
-
hasResponseSelection
boolean hasResponseSelection()Indicates whether user-selected content from the HTTP response is available.- Returns:
- True if there is user-selected content from the HTTP response.
-