burp.api.montoya.scanner.bchecks.BCheckImportResult Maven / Gradle / Ivy
package burp.api.montoya.scanner.bchecks;
import java.util.List;
/**
* The result of importing a BCheck
*/
public interface BCheckImportResult
{
/**
* The status of an imported BCheck
*/
enum Status
{
LOADED_WITHOUT_ERRORS,
LOADED_WITH_ERRORS
}
/**
* The status of the BCheck after import
*
* @return the status
*/
Status status();
/**
* @return a list of errors if the script was invalid or empty is the script was valid.
*/
List importErrors();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy