public enum BALifecycleEvent extends Enum<BALifecycleEvent>
Enum Constant and Description |
---|
CANCEL
lifecycle event which happens when the activity is cancelled.
|
CLOSE
lifecycle event which happens when the activity is closed.
|
COMPENSATE
lifecycle event which happens when the activity is compensated.
|
COMPLETE
lifecycle event which happens when the activity is completed.
|
CONFIRM_COMPLETE
lifecycle event which happens when the middleware has made durable the completed.
|
Error |
EXIT
lifecycle event which happens if all service requests methods executed in the activity have read only
outcomes or if a service request method indicates, via a control, that the activity should exit.
|
FAIL
lifecycle event which happens when the activity fails.
|
NOT_COMPLETE
lifecycle event which happens if a service request indicates that the activity cannot completed
|
STATUS |
UNKNOWN
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static BALifecycleEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BALifecycleEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BALifecycleEvent EXIT
public static final BALifecycleEvent NOT_COMPLETE
public static final BALifecycleEvent COMPLETE
public static final BALifecycleEvent CONFIRM_COMPLETE
public static final BALifecycleEvent CANCEL
public static final BALifecycleEvent CLOSE
public static final BALifecycleEvent COMPENSATE
public static final BALifecycleEvent FAIL
public static final BALifecycleEvent Error
@Deprecated public static final BALifecycleEvent UNKNOWN
public static final BALifecycleEvent STATUS
public static BALifecycleEvent[] values()
for (BALifecycleEvent c : BALifecycleEvent.values()) System.out.println(c);
public static BALifecycleEvent 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 © 2013. All rights reserved.