Interface UserServiceEventOutcome
public interface UserServiceEventOutcome
An object returned by an event callback should implement this interface. This object can
be used by custom components to return data to the caller. Objects being returned
directly to EBX® should be returned by a method of
UserServiceNext
.
Note
When creating custom event outcome values, it is possible (but not mandatory) to define an enumeration such as:public enum Action implements UserServiceEventOutcome { displayStep1, displayStep2, displayStep3 };
- Since:
- 5.8.0
- See Also:
-
Method Summary
-
Method Details
-
name
String name()Returns a string that can be used to identify the type of outcome. This method has the same signature as the methodjava.lang.Enum.name()
.
-