Package org.kuali.rice.krms.api.engine
Interface ResultEvent
public interface ResultEvent
Interface for defining ResultEvents
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
- See Also:
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionReturns the description of the ResultEvent as a StringReturns theExecutionEnvironmentof the ResultEvent.Returns the Boolean result of the ResultEvent.Map<?, ?> Returns the result details of the ResultEvent as a Mapinvalid input: '<'?Returns the source of the ResultEvent.org.joda.time.DateTimeReturns the org.joda.time.DateTime timestamp of the ResultEvent.getType()Returns the type of the ResultEvent.
-
Field Details
-
RULE_EVALUATED
RULE_EVALUATED- See Also:
-
PROPOSITION_EVALUATED
PROPOSITION_EVALUATED- See Also:
-
ACTION_EXECUTED
ACTION_EXECUTED- See Also:
-
TIMING_EVENT
TIMING_EVENT- See Also:
-
-
Method Details
-
getEnvironment
ExecutionEnvironment getEnvironment()Returns theExecutionEnvironmentof the ResultEvent.- Returns:
ExecutionEnvironmentof the ResultEvent.
-
getType
String getType()Returns the type of the ResultEvent.- Returns:
- String of the type of ResultEvent.
-
getSource
Object getSource()Returns the source of the ResultEvent.- Returns:
- source as an Object of the ResultEvent.
-
getTimestamp
org.joda.time.DateTime getTimestamp()Returns the org.joda.time.DateTime timestamp of the ResultEvent.- Returns:
- org.joda.time.DateTime timestamp of the ResultEvent.
-
getResult
Boolean getResult()Returns the Boolean result of the ResultEvent.- Returns:
- Boolean result of the ResultEvent.
-
getDescription
String getDescription()Returns the description of the ResultEvent as a String- Returns:
- description of the ResultEvent as a String
-
getResultDetails
Map<?,?> getResultDetails()Returns the result details of the ResultEvent as a Mapinvalid input: '<'?,?>- Returns:
- result details of the ResultEvent as a Mapinvalid input: '<'?,?>
-