@Deprecated public enum Tag extends Enum<Tag>
Notice that, when audit decorator developers are adding new tags, they have to keep this set of values in sync.
Enum Constant and Description |
---|
completed
Deprecated.
The event happens when the request has been completely handled successfully
by the processing unit (always complements a
response tag). |
exception
Deprecated.
The event happens when the request has been handled with errors
by the processing unit (always complements a
response tag). |
request
Deprecated.
|
response
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static Tag |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Tag[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tag completed
response
tag).public static final Tag exception
response
tag). Notice that this does not indicate that
the source heap object is the origin of the failure (it may or may not have thrown the exception itself).public static Tag[] values()
for (Tag c : Tag.values()) System.out.println(c);
public static Tag 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 nullCopyright 2011-2015 ForgeRock AS.