All Downloads are FREE. Search and download functionalities are using the official Maven repository.

burp.api.montoya.scanner.bchecks.BCheckImportResult Maven / Gradle / Ivy

There is a newer version: 2024.12
Show newest version
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