Class DebuggerService
- java.lang.Object
-
- org.flowable.ui.task.service.debugger.DebuggerService
-
- All Implemented Interfaces:
ProcessDebugger,org.springframework.beans.factory.Aware,org.springframework.context.ApplicationContextAware
@Service public class DebuggerService extends Object implements ProcessDebugger, org.springframework.context.ApplicationContextAware
This class implements basic methods for managing breakpoints- Author:
- martin.grofcik
-
-
Field Summary
Fields Modifier and Type Field Description protected org.springframework.context.ApplicationContextapplicationContextprotected List<BreakpointRepresentation>breakpoints
-
Constructor Summary
Constructors Constructor Description DebuggerService()
-
Method Summary
-
-
-
Field Detail
-
breakpoints
protected List<BreakpointRepresentation> breakpoints
-
applicationContext
protected org.springframework.context.ApplicationContext applicationContext
-
-
Method Detail
-
addBreakpoint
public void addBreakpoint(BreakpointRepresentation breakpointRepresentation)
-
removeBreakpoint
public void removeBreakpoint(BreakpointRepresentation breakpointRepresentation)
-
getBreakpoints
public List<BreakpointRepresentation> getBreakpoints()
-
getBrokenExecutions
public Collection<String> getBrokenExecutions(String activityId, String processInstanceId)
-
getProcessInstanceEventLog
public List<EventLogEntry> getProcessInstanceEventLog(String processInstanceId)
-
continueExecution
public void continueExecution(String executionId)
-
isBreakpoint
public boolean isBreakpoint(Execution execution)
- Specified by:
isBreakpointin interfaceProcessDebugger
-
getManagementService
protected ManagementService getManagementService()
-
getRuntimeService
protected RuntimeService getRuntimeService()
-
getHistoricService
protected HistoryService getHistoricService()
-
setApplicationContext
public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext) throws org.springframework.beans.BeansException- Specified by:
setApplicationContextin interfaceorg.springframework.context.ApplicationContextAware- Throws:
org.springframework.beans.BeansException
-
getExecutionVariables
public List<DebuggerRestVariable> getExecutionVariables(String executionId)
-
getExecutions
public List<ExecutionRepresentation> getExecutions(String processInstanceId)
-
-