Package org.kie.internal.runtime.error
Interface ExecutionErrorStorage
-
public interface ExecutionErrorStorage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidacknowledge(String user, String... errorId)ExecutionErrorget(String errorId)List<ExecutionError>list(Integer page, Integer pageSize)List<ExecutionError>listByActivity(String activityName, Integer page, Integer pageSize)List<ExecutionError>listByDeployment(String deploymentId, Integer page, Integer pageSize)List<ExecutionError>listByProcessInstance(Long processInstanceId, Integer page, Integer pageSize)ExecutionErrorstore(ExecutionError error)
-
-
-
Method Detail
-
store
ExecutionError store(ExecutionError error)
-
get
ExecutionError get(String errorId)
-
list
List<ExecutionError> list(Integer page, Integer pageSize)
-
listByProcessInstance
List<ExecutionError> listByProcessInstance(Long processInstanceId, Integer page, Integer pageSize)
-
listByActivity
List<ExecutionError> listByActivity(String activityName, Integer page, Integer pageSize)
-
listByDeployment
List<ExecutionError> listByDeployment(String deploymentId, Integer page, Integer pageSize)
-
-