Class ProcessExecutionLogger
- java.lang.Object
-
- org.activiti.engine.test.impl.logger.ProcessExecutionLogger
-
public class ProcessExecutionLogger extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,ExecutionEntity>createdExecutionsprotected Map<String,List<DebugInfo>>debugInfoMapprotected Map<String,ExecutionEntity>deletedExecutions
-
Constructor Summary
Constructors Constructor Description ProcessExecutionLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDebugInfo(AbstractDebugInfo debugInfo)voidaddDebugInfo(AbstractDebugInfo debugInfo, boolean generateExecutionTreeRepresentation)voidclear()voidexecutionCreated(ExecutionEntity executionEntity)voidexecutionDeleted(ExecutionEntity executionEntity)protected List<DebugInfoExecutionTree>generateExecutionTrees()protected voidinternalPopulateExecutionTree(DebugInfoExecutionTree.DebugInfoExecutionTreeNode parentNode, Map<String,List<ExecutionEntity>> parentMapping)voidlogDebugInfo()voidlogDebugInfo(boolean clearAfterLogging)
-
-
-
Field Detail
-
createdExecutions
protected Map<String,ExecutionEntity> createdExecutions
-
deletedExecutions
protected Map<String,ExecutionEntity> deletedExecutions
-
-
Method Detail
-
addDebugInfo
public void addDebugInfo(AbstractDebugInfo debugInfo)
-
addDebugInfo
public void addDebugInfo(AbstractDebugInfo debugInfo, boolean generateExecutionTreeRepresentation)
-
generateExecutionTrees
protected List<DebugInfoExecutionTree> generateExecutionTrees()
-
internalPopulateExecutionTree
protected void internalPopulateExecutionTree(DebugInfoExecutionTree.DebugInfoExecutionTreeNode parentNode, Map<String,List<ExecutionEntity>> parentMapping)
-
logDebugInfo
public void logDebugInfo()
-
logDebugInfo
public void logDebugInfo(boolean clearAfterLogging)
-
clear
public void clear()
-
executionCreated
public void executionCreated(ExecutionEntity executionEntity)
-
executionDeleted
public void executionDeleted(ExecutionEntity executionEntity)
-
-