Class BasicResult

java.lang.Object
java.util.EventObject
org.kuali.rice.krms.framework.engine.result.BasicResult
All Implemented Interfaces:
Serializable, ResultEvent

public class BasicResult extends EventObject implements ResultEvent
An implementation of ResultEvent
Author:
Kuali Rice Team (rice.collab@kuali.org)
See Also:
  • Field Details

    • type

      protected String type
    • timestamp

      protected org.joda.time.DateTime timestamp
    • environment

      protected ExecutionEnvironment environment
    • result

      protected Boolean result
    • description

      protected String description
    • resultDetails

      protected Map<String,?> resultDetails
  • Constructor Details

    • BasicResult

      public BasicResult(Map<String,?> resultDetails, String eventType, Object source, ExecutionEnvironment environment, boolean result)
      Constructor
      Parameters:
      resultDetails - of the ResultEvent
      eventType - String of the ResultEvent
      source - Object of the ResultEvent
      environment - ExecutionEnvironment
      result - boolean of the ResultEvent
    • BasicResult

      public BasicResult(Map<String,?> resultDetails, String description, String eventType, Object source, ExecutionEnvironment environment, boolean result)
      Constructor
      Parameters:
      resultDetails - of the ResultEvent
      description - String of the ResultEvent
      eventType - String of the ResultEvent
      source - Object of the ResultEvent
      environment - ExecutionEnvironment
      result - boolean of the ResultEvent
    • BasicResult

      public BasicResult(String description, String eventType, Object source, ExecutionEnvironment environment, boolean result)
      Constructor
      Parameters:
      description - String of the ResultEvent
      eventType - String of the ResultEvent
      source - Object of the ResultEvent
      environment - ExecutionEnvironment
      result - boolean of the ResultEvent
    • BasicResult

      public BasicResult(String eventType, Object source, ExecutionEnvironment environment, boolean result)
      Constructor
      Parameters:
      eventType - String of the ResultEvent
      source - Object of the ResultEvent
      environment - ExecutionEnvironment
      result - boolean of the ResultEvent
    • BasicResult

      public BasicResult(String eventType, Object source, ExecutionEnvironment environment)
      Constructor
      Parameters:
      eventType - String of the ResultEvent
      source - Object of the ResultEvent
      environment - ExecutionEnvironment
  • Method Details