public static enum CorrelationIdentifier.Scope extends Enum<CorrelationIdentifier.Scope>
| Enum Constant and Description |
|---|
Global
The 'Global' scope means the identifier is unique over the end to end
life of the business transaction.
|
Interaction
The 'Interaction' scope means the identifier is only unique in relation
to a specific exchange between two (or more) participants.
|
Local
The 'Local' scope means the identifier is unique within an island
of the business transaction (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static CorrelationIdentifier.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CorrelationIdentifier.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CorrelationIdentifier.Scope Global
public static final CorrelationIdentifier.Scope Local
public static final CorrelationIdentifier.Scope Interaction
public static CorrelationIdentifier.Scope[] values()
for (CorrelationIdentifier.Scope c : CorrelationIdentifier.Scope.values()) System.out.println(c);
public static CorrelationIdentifier.Scope 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 © 2015–2016 Red Hat, Inc.. All rights reserved.