Interface AuditIssueDefinition
-
public interface AuditIssueDefinitionThis interface is used to retrieve background information about audit issues. Note that text generated by extensions is subject to an HTML whitelist that allows only formatting tags and simple hyperlinks.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static AuditIssueDefinitionauditIssueDefinition(java.lang.String name, java.lang.String background, java.lang.String remediation, AuditIssueSeverity typicalSeverity)This method can be used to create a default implementation of an audit issue definition.java.lang.Stringbackground()This method returns a background description for this issue type.java.lang.Stringname()This method returns the name of this issue type.java.lang.Stringremediation()This method returns a background description of the remediation for this type of issue.inttypeIndex()This method returns an index of the issue type.AuditIssueSeveritytypicalSeverity()This method returns the typical issue severity level.
-
-
-
Method Detail
-
auditIssueDefinition
static AuditIssueDefinition auditIssueDefinition(java.lang.String name, java.lang.String background, java.lang.String remediation, AuditIssueSeverity typicalSeverity)
This method can be used to create a default implementation of an audit issue definition.- Parameters:
name- The name of the issue type.background- The background description for the type of issue.remediation- The background description of the remediation for this type of issue.typicalSeverity- The typicalAuditIssueSeveritylevel.- Returns:
- The audit issue definition.
-
name
java.lang.String name()
This method returns the name of this issue type.- Returns:
- The name of this issue type (e.g. "SQL injection").
-
background
java.lang.String background()
This method returns a background description for this issue type.- Returns:
- A background description for this type of issue, or
nullif none applies. A limited set of HTML tags may be used.
-
remediation
java.lang.String remediation()
This method returns a background description of the remediation for this type of issue.- Returns:
- A background description of the remediation for this type of
issue, or
nullif none applies. A limited set of HTML tags may be used.
-
typicalSeverity
AuditIssueSeverity typicalSeverity()
This method returns the typical issue severity level.- Returns:
- The typical
AuditIssueSeveritylevel.
-
typeIndex
int typeIndex()
This method returns an index of the issue type. See the Burp Scanner documentation for a listing of all the issue types.- Returns:
- An index of the issue type.
-
-