Class FlowableProcessInstanceService
- java.lang.Object
-
- org.flowable.ui.task.service.runtime.FlowableProcessInstanceService
-
@Service @Transactional public class FlowableProcessInstanceService extends Object
- Author:
- Tijs Rademakers
-
-
Field Summary
Fields Modifier and Type Field Description protected FlowableCommentServicecommentServiceprotected ContentServicecontentServiceprotected org.flowable.form.api.FormRepositoryServiceformRepositoryServiceprotected org.flowable.form.api.FormServiceformServiceprotected HistoryServicehistoryServiceprotected PermissionServicepermissionServiceprotected RepositoryServicerepositoryServiceprotected RuntimeServiceruntimeServiceprotected UserCacheuserCache
-
Constructor Summary
Constructors Constructor Description FlowableProcessInstanceService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeleteProcessInstance(String processInstanceId)ProcessInstanceRepresentationgetProcessInstance(String processInstanceId, javax.servlet.http.HttpServletResponse response)org.flowable.form.api.FormInfogetProcessInstanceStartForm(String processInstanceId, javax.servlet.http.HttpServletResponse response)ProcessInstanceRepresentationstartNewProcessInstance(CreateProcessInstanceRepresentation startRequest)
-
-
-
Field Detail
-
repositoryService
@Autowired protected RepositoryService repositoryService
-
historyService
@Autowired protected HistoryService historyService
-
runtimeService
@Autowired protected RuntimeService runtimeService
-
formService
@Autowired protected org.flowable.form.api.FormService formService
-
formRepositoryService
@Autowired protected org.flowable.form.api.FormRepositoryService formRepositoryService
-
permissionService
@Autowired protected PermissionService permissionService
-
contentService
@Autowired protected ContentService contentService
-
commentService
@Autowired protected FlowableCommentService commentService
-
userCache
@Autowired protected UserCache userCache
-
-
Method Detail
-
getProcessInstance
public ProcessInstanceRepresentation getProcessInstance(String processInstanceId, javax.servlet.http.HttpServletResponse response)
-
getProcessInstanceStartForm
public org.flowable.form.api.FormInfo getProcessInstanceStartForm(String processInstanceId, javax.servlet.http.HttpServletResponse response)
-
startNewProcessInstance
public ProcessInstanceRepresentation startNewProcessInstance(CreateProcessInstanceRepresentation startRequest)
-
deleteProcessInstance
public void deleteProcessInstance(String processInstanceId)
-
-