Package burp.api.montoya.scanner
Interface ScanTask
-
- All Superinterfaces:
Task
- All Known Subinterfaces:
Audit,Crawl,CrawlAndAudit
public interface ScanTask extends Task
This interface is used to retrieve details of tasks in the Burp Scanner.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description interrorCount()This method returns the number of network errors that have occurred for the scan task.intrequestCount()This method returns the number of requests that have been made for the scan task.-
Methods inherited from interface burp.api.montoya.core.Task
delete, statusMessage
-
-
-
-
Method Detail
-
requestCount
int requestCount()
This method returns the number of requests that have been made for the scan task.- Returns:
- The number of requests that have been made for the scan task.
-
errorCount
int errorCount()
This method returns the number of network errors that have occurred for the scan task.- Returns:
- The number of network errors that have occurred for the scan task.
-
-