Enum AuditInsertionPointType
- java.lang.Object
-
- java.lang.Enum<AuditInsertionPointType>
-
- burp.api.montoya.scanner.audit.insertionpoint.AuditInsertionPointType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AuditInsertionPointType>
public enum AuditInsertionPointType extends java.lang.Enum<AuditInsertionPointType>
This enum represents the audit insertion point type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENTIRE_BODYEXTENSION_PROVIDEDHEADERPARAM_AMFPARAM_BODYPARAM_COOKIEPARAM_JSONPARAM_MULTIPART_ATTRPARAM_NAME_BODYPARAM_NAME_URLPARAM_URLPARAM_XMLPARAM_XML_ATTRUNKNOWNURL_PATH_FILENAMEURL_PATH_FOLDERUSER_PROVIDED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AuditInsertionPointTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AuditInsertionPointType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARAM_URL
public static final AuditInsertionPointType PARAM_URL
-
PARAM_BODY
public static final AuditInsertionPointType PARAM_BODY
-
PARAM_COOKIE
public static final AuditInsertionPointType PARAM_COOKIE
-
PARAM_XML
public static final AuditInsertionPointType PARAM_XML
-
PARAM_XML_ATTR
public static final AuditInsertionPointType PARAM_XML_ATTR
-
PARAM_MULTIPART_ATTR
public static final AuditInsertionPointType PARAM_MULTIPART_ATTR
-
PARAM_JSON
public static final AuditInsertionPointType PARAM_JSON
-
PARAM_AMF
public static final AuditInsertionPointType PARAM_AMF
-
HEADER
public static final AuditInsertionPointType HEADER
-
PARAM_NAME_URL
public static final AuditInsertionPointType PARAM_NAME_URL
-
PARAM_NAME_BODY
public static final AuditInsertionPointType PARAM_NAME_BODY
-
ENTIRE_BODY
public static final AuditInsertionPointType ENTIRE_BODY
-
URL_PATH_FILENAME
public static final AuditInsertionPointType URL_PATH_FILENAME
-
URL_PATH_FOLDER
public static final AuditInsertionPointType URL_PATH_FOLDER
-
USER_PROVIDED
public static final AuditInsertionPointType USER_PROVIDED
-
EXTENSION_PROVIDED
public static final AuditInsertionPointType EXTENSION_PROVIDED
-
UNKNOWN
public static final AuditInsertionPointType UNKNOWN
-
-
Method Detail
-
values
public static AuditInsertionPointType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AuditInsertionPointType c : AuditInsertionPointType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditInsertionPointType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-