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 ofUserServiceNext
.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:
UserServiceEvent.processEvent(UserServiceEventContext)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
name()
Returns a string that can be used to identify the type of outcome.
-
-
-
Method Detail
-
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()
.
-
-