public enum AuditLevel extends Enum<AuditLevel>
Enum Constant and Description |
---|
ALL
The SIS will generate an audit log for all calls.
|
COMPONENT
The SIS will generate an audit log for calls where a selected component
(trigger, composition etc) has enabled auditing.
|
NONE
The SIS will not generate audit logs for any call.
|
Modifier and Type | Method and Description |
---|---|
static AuditLevel |
fromString(String s) |
static AuditLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditLevel ALL
public static final AuditLevel COMPONENT
public static final AuditLevel NONE
public static AuditLevel[] values()
for (AuditLevel c : AuditLevel.values()) System.out.println(c);
public static AuditLevel valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static AuditLevel fromString(String s)