Package org.drools.kiesession.audit
Class RuleFlowLogEvent
- java.lang.Object
-
- org.drools.kiesession.audit.LogEvent
-
- org.drools.kiesession.audit.RuleFlowLogEvent
-
- Direct Known Subclasses:
RuleFlowNodeLogEvent,RuleFlowVariableLogEvent
public class RuleFlowLogEvent extends LogEvent
A ruleflow event logged by the WorkingMemoryLogger. It is a snapshot of the event as it was thrown by the working memory. It contains the process name and id.
-
-
Field Summary
-
Fields inherited from class org.drools.kiesession.audit.LogEvent
ACTIVATION_CANCELLED, ACTIVATION_CREATED, AFTER_ACTIVATION_FIRE, AFTER_PACKAGE_ADDED, AFTER_PACKAGE_REMOVED, AFTER_RULE_ADDED, AFTER_RULE_REMOVED, AFTER_RULEFLOW_COMPLETED, AFTER_RULEFLOW_CREATED, AFTER_RULEFLOW_GROUP_ACTIVATED, AFTER_RULEFLOW_GROUP_DEACTIVATED, AFTER_RULEFLOW_NODE_EXITED, AFTER_RULEFLOW_NODE_TRIGGERED, AFTER_TASK_INSTANCE_COMPLETED, AFTER_TASK_INSTANCE_CREATED, AFTER_VARIABLE_INSTANCE_CHANGED, BEFORE_ACTIVATION_FIRE, BEFORE_PACKAGE_ADDED, BEFORE_PACKAGE_REMOVED, BEFORE_RULE_ADDED, BEFORE_RULE_REMOVED, BEFORE_RULEFLOW_COMPLETED, BEFORE_RULEFLOW_CREATED, BEFORE_RULEFLOW_GROUP_ACTIVATED, BEFORE_RULEFLOW_GROUP_DEACTIVATED, BEFORE_RULEFLOW_NODE_EXITED, BEFORE_RULEFLOW_NODE_TRIGGERED, BEFORE_TASK_INSTANCE_COMPLETED, BEFORE_TASK_INSTANCE_CREATED, BEFORE_VARIABLE_INSTANCE_CHANGED, INSERTED, RETRACTED, UPDATED
-
-
Constructor Summary
Constructors Constructor Description RuleFlowLogEvent(int type, java.lang.String processId, java.lang.String processName, java.lang.Object processInstanceId)Create a new ruleflow log event.RuleFlowLogEvent(int type, org.kie.api.runtime.process.ProcessInstance processInstance)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetProcessId()java.lang.ObjectgetProcessInstanceId()java.lang.StringgetProcessName()voidreadExternal(java.io.ObjectInput in)java.lang.StringtoString()voidwriteExternal(java.io.ObjectOutput out)
-
-
-
Constructor Detail
-
RuleFlowLogEvent
public RuleFlowLogEvent(int type, org.kie.api.runtime.process.ProcessInstance processInstance)
-
RuleFlowLogEvent
public RuleFlowLogEvent(int type, java.lang.String processId, java.lang.String processName, java.lang.Object processInstanceId)Create a new ruleflow log event.- Parameters:
type- The type of event. This can only be RULEFLOW_CREATED, RULEFLOW_COMPLETED, RULEFLOW_NODE_START or RULEFLOW_NODE_END.processId- The id of the processprocessName- The name of the process
-
-
Method Detail
-
readExternal
public void readExternal(java.io.ObjectInput in) throws java.io.IOException, java.lang.ClassNotFoundException- Overrides:
readExternalin classLogEvent- Throws:
java.io.IOExceptionjava.lang.ClassNotFoundException
-
writeExternal
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException- Overrides:
writeExternalin classLogEvent- Throws:
java.io.IOException
-
getProcessId
public java.lang.String getProcessId()
-
getProcessName
public java.lang.String getProcessName()
-
getProcessInstanceId
public java.lang.Object getProcessInstanceId()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-