Uses of Interface
org.flowable.batch.api.BatchPart
Packages that use BatchPart
Package
Description
Public API of the Flowable engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
: Manages Deployment
s.RuntimeService
: For starting and searching ProcessInstance
s.TaskService
: Exposes operations to manage human (standalone) tasks, such as claiming, completing and assigning tasks.IdentityService
: Used for managing users, groups and the relations between them.ManagementService
: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection of business processes.HistoryService
: Exposes information about ongoing and past process instances.FormService
: Access to form data and rendered forms for starting new process instances and completing tasks.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of BatchPart in org.flowable.batch.api
Methods in org.flowable.batch.api that return BatchPartModifier and TypeMethodDescriptionBatchService.completeBatchPart
(String batchPartId, String status, String resultJson) BatchPartBuilder.create()
BatchService.createBatchPart
(Batch batch, String status, String scopeId, String subScopeId, String scopeType) BatchService.getBatchPart
(String id) Methods in org.flowable.batch.api that return types with arguments of type BatchPartModifier and TypeMethodDescriptionBatchService.findBatchPartsByBatchId
(String batchId) BatchService.findBatchPartsByBatchIdAndStatus
(String batchId, String status) BatchService.findBatchPartsByScopeIdAndType
(String scopeId, String scopeType) -
Uses of BatchPart in org.flowable.batch.service
Methods in org.flowable.batch.service that return BatchPartModifier and TypeMethodDescriptionBatchPartBuilderImpl.create()
protected BatchPart
BatchPartBuilderImpl.createSafe()
-
Uses of BatchPart in org.flowable.batch.service.impl
Methods in org.flowable.batch.service.impl that return BatchPartModifier and TypeMethodDescriptionBatchServiceImpl.completeBatchPart
(String batchPartId, String status, String resultJson) BatchServiceImpl.createBatchPart
(Batch batch, String status, String scopeId, String subScopeId, String scopeType) Methods in org.flowable.batch.service.impl that return types with arguments of type BatchPartModifier and TypeMethodDescriptionBatchPartQueryImpl.executeList
(CommandContext commandContext) BatchServiceImpl.findBatchPartsByBatchId
(String batchId) BatchServiceImpl.findBatchPartsByBatchIdAndStatus
(String batchId, String status) BatchServiceImpl.findBatchPartsByScopeIdAndType
(String scopeId, String scopeType) -
Uses of BatchPart in org.flowable.batch.service.impl.persistence.entity
Subinterfaces of BatchPart in org.flowable.batch.service.impl.persistence.entityClasses in org.flowable.batch.service.impl.persistence.entity that implement BatchPartMethods in org.flowable.batch.service.impl.persistence.entity that return types with arguments of type BatchPartModifier and TypeMethodDescriptionBatchPartEntityManager.findBatchPartsByBatchId
(String batchId) BatchPartEntityManagerImpl.findBatchPartsByBatchId
(String batchId) BatchPartEntityManager.findBatchPartsByBatchIdAndStatus
(String batchId, String status) BatchPartEntityManagerImpl.findBatchPartsByBatchIdAndStatus
(String batchId, String status) BatchPartEntityManager.findBatchPartsByQueryCriteria
(BatchPartQuery batchPartQuery) BatchPartEntityManagerImpl.findBatchPartsByQueryCriteria
(BatchPartQuery batchPartQuery) BatchPartEntityManager.findBatchPartsByScopeIdAndType
(String scopeId, String scopeType) BatchPartEntityManagerImpl.findBatchPartsByScopeIdAndType
(String scopeId, String scopeType) -
Uses of BatchPart in org.flowable.batch.service.impl.persistence.entity.data
Methods in org.flowable.batch.service.impl.persistence.entity.data that return types with arguments of type BatchPartModifier and TypeMethodDescriptionBatchPartDataManager.findBatchPartsByBatchId
(String batchId) BatchPartDataManager.findBatchPartsByBatchIdAndStatus
(String batchId, String status) BatchPartDataManager.findBatchPartsByQueryCriteria
(BatchPartQueryImpl batchPartQuery) BatchPartDataManager.findBatchPartsByScopeIdAndType
(String scopeId, String scopeType) -
Uses of BatchPart in org.flowable.batch.service.impl.persistence.entity.data.impl
Methods in org.flowable.batch.service.impl.persistence.entity.data.impl that return types with arguments of type BatchPartModifier and TypeMethodDescriptionMybatisBatchPartDataManager.findBatchPartsByBatchId
(String batchId) MybatisBatchPartDataManager.findBatchPartsByBatchIdAndStatus
(String batchId, String status) MybatisBatchPartDataManager.findBatchPartsByQueryCriteria
(BatchPartQueryImpl batchPartQuery) MybatisBatchPartDataManager.findBatchPartsByScopeIdAndType
(String scopeId, String scopeType) -
Uses of BatchPart in org.flowable.cmmn.engine.impl.cmd
Methods in org.flowable.cmmn.engine.impl.cmd with parameters of type BatchPartModifier and TypeMethodDescriptionprotected CaseInstanceBatchMigrationPartResult
GetCaseInstanceMigrationBatchResultCmd.convertFromBatchPart
(BatchPart batchPart, com.fasterxml.jackson.databind.ObjectMapper objectMapper, CmmnEngineConfiguration engineConfiguration) -
Uses of BatchPart in org.flowable.cmmn.engine.impl.delete
Fields in org.flowable.cmmn.engine.impl.delete declared as BatchPartMethods in org.flowable.cmmn.engine.impl.delete that return BatchPartMethods in org.flowable.cmmn.engine.impl.delete with parameters of type BatchPartModifier and TypeMethodDescriptionprotected void
ComputeDeleteHistoricCaseInstanceIdsJobHandler.failBatchPart
(CmmnEngineConfiguration engineConfiguration, BatchService batchService, BatchPart batchPart, Batch batch, String resultJson, boolean sequentialExecution) protected void
DeleteHistoricCaseInstancesSequentialJobHandler.failBatchPart
(CmmnEngineConfiguration engineConfiguration, BatchService batchService, BatchPart batchPart, Batch batch, String resultJson) protected com.fasterxml.jackson.databind.JsonNode
DeleteHistoricCaseInstanceIdsJobHandler.getBatchPartResult
(BatchPart batchPart, CmmnEngineConfiguration engineConfiguration) Method parameters in org.flowable.cmmn.engine.impl.delete with type arguments of type BatchPartModifier and TypeMethodDescriptionprotected void
DeleteHistoricCaseInstanceIdsStatusJobHandler.completeBatchFail
(Batch batch, List<BatchPart> failedParts, CmmnEngineConfiguration engineConfiguration) Constructors in org.flowable.cmmn.engine.impl.delete with parameters of type BatchPartModifierConstructorDescriptionprotected
BatchDeleteCaseConfig
(Batch batch, BatchPart batchPart, String error, boolean sequentialExecution) -
Uses of BatchPart in org.flowable.engine
Methods in org.flowable.engine that return BatchPartMethods in org.flowable.engine that return types with arguments of type BatchPartModifier and TypeMethodDescriptionManagementService.findBatchPartsByBatchId
(String batchId) ManagementService.findBatchPartsByBatchIdAndStatus
(String batchId, String status) -
Uses of BatchPart in org.flowable.engine.impl
Methods in org.flowable.engine.impl that return BatchPartMethods in org.flowable.engine.impl that return types with arguments of type BatchPartModifier and TypeMethodDescriptionManagementServiceImpl.findBatchPartsByBatchId
(String batchId) ManagementServiceImpl.findBatchPartsByBatchIdAndStatus
(String batchId, String status) -
Uses of BatchPart in org.flowable.engine.impl.cmd
Methods in org.flowable.engine.impl.cmd that return BatchPartMethods in org.flowable.engine.impl.cmd that return types with arguments of type BatchPartModifier and TypeMethodDescriptionFindBatchPartsByBatchIdCmd.execute
(CommandContext commandContext) Methods in org.flowable.engine.impl.cmd with parameters of type BatchPartModifier and TypeMethodDescriptionprotected ProcessInstanceBatchMigrationPartResult
GetProcessInstanceMigrationBatchResultCmd.convertFromBatchPart
(BatchPart batchPart, com.fasterxml.jackson.databind.ObjectMapper objectMapper) -
Uses of BatchPart in org.flowable.engine.impl.delete
Fields in org.flowable.engine.impl.delete declared as BatchPartMethods in org.flowable.engine.impl.delete that return BatchPartMethods in org.flowable.engine.impl.delete with parameters of type BatchPartModifier and TypeMethodDescriptionprotected void
ComputeDeleteHistoricProcessInstanceIdsJobHandler.failBatchPart
(ProcessEngineConfigurationImpl engineConfiguration, BatchService batchService, BatchPart batchPart, Batch batch, String resultJson, boolean sequentialExecution) protected void
DeleteHistoricProcessInstancesSequentialJobHandler.failBatchPart
(ProcessEngineConfigurationImpl engineConfiguration, BatchService batchService, BatchPart batchPart, Batch batch, String resultJson) protected com.fasterxml.jackson.databind.JsonNode
DeleteHistoricProcessInstanceIdsJobHandler.getBatchPartResult
(BatchPart batchPart, ProcessEngineConfigurationImpl engineConfiguration) Method parameters in org.flowable.engine.impl.delete with type arguments of type BatchPartModifier and TypeMethodDescriptionprotected void
DeleteHistoricProcessInstanceIdsStatusJobHandler.completeBatchFail
(Batch batch, List<BatchPart> failedParts, ProcessEngineConfigurationImpl engineConfiguration) Constructors in org.flowable.engine.impl.delete with parameters of type BatchPartModifierConstructorDescriptionprotected
BatchDeleteProcessConfig
(Batch batch, BatchPart batchPart, String error, boolean sequentialExecution) -
Uses of BatchPart in org.flowable.rest.service.api
Methods in org.flowable.rest.service.api with parameters of type BatchPartModifier and TypeMethodDescriptionvoid
BpmnRestApiInterceptor.accessBatchPartInfoById
(BatchPart batchPart) RestResponseFactory.createBatchPartResponse
(BatchPart batchPart) RestResponseFactory.createBatchPartResponse
(BatchPart batchPart, RestUrlBuilder urlBuilder) Method parameters in org.flowable.rest.service.api with type arguments of type BatchPartModifier and TypeMethodDescriptionRestResponseFactory.createBatchPartResponse
(List<BatchPart> batchParts) -
Uses of BatchPart in org.flowable.rest.service.api.management
Methods in org.flowable.rest.service.api.management that return BatchPartModifier and TypeMethodDescriptionprotected BatchPart
BatchPartBaseResource.getBatchPartById
(String batchPartId) Methods in org.flowable.rest.service.api.management with parameters of type BatchPartModifier and TypeMethodDescriptionprotected void
BatchPartBaseResource.validateBatchPart
(BatchPart batchPart, String batchPartId)