Uses of Interface
org.flowable.cmmn.api.runtime.CaseInstance
Packages that use CaseInstance
Package
Description
-
Uses of CaseInstance in org.flowable.cmmn.api.event
Methods in org.flowable.cmmn.api.event that return CaseInstanceModifier and TypeMethodDescriptionFlowableCaseStageEndedEvent.getCaseInstance()Returns the case instance the stage belongs to.FlowableCaseStageStartedEvent.getCaseInstance()Returns the case instance the stage belongs to.FlowableCaseEndedEvent.getEntity()FlowableCaseStartedEvent.getEntity() -
Uses of CaseInstance in org.flowable.cmmn.api.listener
Methods in org.flowable.cmmn.api.listener with parameters of type CaseInstanceModifier and TypeMethodDescriptionvoidCaseInstanceLifecycleListener.stateChanged(CaseInstance caseInstance, String oldState, String newState) Will be called when the state of aCaseInstancechanges and theCaseInstanceLifecycleListener.getSourceState()andCaseInstanceLifecycleListener.getTargetState()match. -
Uses of CaseInstance in org.flowable.cmmn.api.migration
Methods in org.flowable.cmmn.api.migration with parameters of type CaseInstanceModifier and TypeMethodDescriptionvoidCaseInstanceMigrationCallback.caseInstanceMigrated(CaseInstance caseInstance, CaseDefinition caseDefToMigrateTo, CaseInstanceMigrationDocument document) -
Uses of CaseInstance in org.flowable.cmmn.api.reactivation
Methods in org.flowable.cmmn.api.reactivation that return CaseInstanceModifier and TypeMethodDescriptionCaseReactivationBuilder.reactivate()After having entered all necessary information for the reactivation, this method actually triggers the reactivation and returns the reactivated case instance from the runtime. -
Uses of CaseInstance in org.flowable.cmmn.api.runtime
Methods in org.flowable.cmmn.api.runtime that return CaseInstanceModifier and TypeMethodDescriptionCaseInstanceBuilder.start()Once all the information is set using this builder API, the start method will create the case instance, initialize it according all the data in the builder and then evaluate the case model to start the case.CaseInstanceBuilder.startAsync()Once all the information is set using this builder API, the startAsync method will create the case instance and initialize its data, but the case model is not yet evaluated, but will be started and evaluated asynchronously in a different transaction.CaseInstanceBuilder.startWithForm()Once all the information is set using this builder API, the startWithForm method will create the case instance and initialize its data by additionally using the submitted form variables and handling them with the start form provided with the case model (e.g.Methods in org.flowable.cmmn.api.runtime with parameters of type CaseInstanceModifier and TypeMethodDescriptionstatic booleanCaseInstanceState.isInTerminalState(CaseInstance caseInstance) -
Uses of CaseInstance in org.flowable.cmmn.engine
Methods in org.flowable.cmmn.engine with parameters of type CaseInstanceModifier and TypeMethodDescriptionvoidCaseLocalizationManager.localize(CaseInstance caseInstance, String locale, boolean withLocalizationFallback) -
Uses of CaseInstance in org.flowable.cmmn.engine.impl.cmd
Methods in org.flowable.cmmn.engine.impl.cmd that return CaseInstanceModifier and TypeMethodDescriptionReactivateHistoricCaseInstanceCmd.execute(CommandContext commandContext) StartCaseInstanceAsyncCmd.execute(CommandContext commandContext) StartCaseInstanceCmd.execute(CommandContext commandContext) -
Uses of CaseInstance in org.flowable.cmmn.engine.impl.delegate
Methods in org.flowable.cmmn.engine.impl.delegate with parameters of type CaseInstanceModifier and TypeMethodDescriptionvoidCmmnClassDelegate.stateChanged(CaseInstance caseInstance, String oldState, String newState) -
Uses of CaseInstance in org.flowable.cmmn.engine.impl.event
Fields in org.flowable.cmmn.engine.impl.event declared as CaseInstanceModifier and TypeFieldDescriptionprotected CaseInstanceFlowableCaseEndedEventImpl.caseInstanceprotected CaseInstanceFlowableCaseStageEndedEventImpl.caseInstanceprotected CaseInstanceFlowableCaseStageStartedEventImpl.caseInstanceprotected CaseInstanceFlowableCaseStartedEventImpl.caseInstanceMethods in org.flowable.cmmn.engine.impl.event that return CaseInstanceModifier and TypeMethodDescriptionFlowableCaseStageEndedEventImpl.getCaseInstance()FlowableCaseStageStartedEventImpl.getCaseInstance()FlowableCaseEndedEventImpl.getEntity()FlowableCaseStartedEventImpl.getEntity()Methods in org.flowable.cmmn.engine.impl.event with parameters of type CaseInstanceModifier and TypeMethodDescriptionstatic FlowableCaseEndedEventFlowableCmmnEventBuilder.createCaseEndedEvent(CaseInstance caseInstance, String endingState) static FlowableCaseStartedEventFlowableCmmnEventBuilder.createCaseStartedEvent(CaseInstance caseInstance) static FlowableCaseStageEndedEventFlowableCmmnEventBuilder.createStageEndedEvent(CaseInstance caseInstance, PlanItemInstance stageInstance, String endingState) FlowableCmmnEventBuilder.createStageStartedEvent(CaseInstance caseInstance, PlanItemInstance stageInstance) Constructors in org.flowable.cmmn.engine.impl.event with parameters of type CaseInstanceModifierConstructorDescriptionFlowableCaseEndedEventImpl(CaseInstance caseInstance, String endingState) FlowableCaseStageEndedEventImpl(CaseInstance caseInstance, PlanItemInstance stageInstance, String endingState) FlowableCaseStageStartedEventImpl(CaseInstance caseInstance, PlanItemInstance stageInstance) FlowableCaseStartedEventImpl(CaseInstance caseInstance) -
Uses of CaseInstance in org.flowable.cmmn.engine.impl.listener
Methods in org.flowable.cmmn.engine.impl.listener with parameters of type CaseInstanceModifier and TypeMethodDescriptionstatic voidCaseInstanceLifeCycleListenerUtil.callLifecycleListeners(CommandContext commandContext, CaseInstance caseInstance, String oldState, String newState) protected static voidCaseInstanceLifeCycleListenerUtil.executeLifecycleListener(CaseInstance caseInstance, String oldState, String newState, CaseInstanceLifecycleListener lifecycleListener) voidDelegateExpressionCaseLifecycleListener.stateChanged(CaseInstance caseInstance, String oldState, String newState) voidExpressionCaseLifecycleListener.stateChanged(CaseInstance caseInstance, String oldState, String newState) -
Uses of CaseInstance in org.flowable.cmmn.engine.impl.migration
Methods in org.flowable.cmmn.engine.impl.migration with parameters of type CaseInstanceModifier and TypeMethodDescriptionprotected ChangePlanItemStateBuilderImplCaseInstanceMigrationManagerImpl.prepareChangeStateBuilder(CaseInstance caseInstance, CaseDefinition caseDefinitionToMigrateTo, CaseInstanceMigrationDocument document, CommandContext commandContext) -
Uses of CaseInstance in org.flowable.cmmn.engine.impl.persistence.entity
Subinterfaces of CaseInstance in org.flowable.cmmn.engine.impl.persistence.entityClasses in org.flowable.cmmn.engine.impl.persistence.entity that implement CaseInstanceMethods in org.flowable.cmmn.engine.impl.persistence.entity that return types with arguments of type CaseInstanceModifier and TypeMethodDescriptionCaseInstanceEntityManager.findByCriteria(CaseInstanceQuery query) CaseInstanceEntityManagerImpl.findByCriteria(CaseInstanceQuery query) CaseInstanceEntityManager.findWithVariablesByCriteria(CaseInstanceQuery query) CaseInstanceEntityManagerImpl.findWithVariablesByCriteria(CaseInstanceQuery query) Methods in org.flowable.cmmn.engine.impl.persistence.entity with parameters of type CaseInstanceModifier and TypeMethodDescriptionHistoricCaseInstanceEntityManager.create(CaseInstance caseInstance) HistoricCaseInstanceEntityManagerImpl.create(CaseInstance caseInstance) Constructors in org.flowable.cmmn.engine.impl.persistence.entity with parameters of type CaseInstance -
Uses of CaseInstance in org.flowable.cmmn.engine.impl.persistence.entity.data
Methods in org.flowable.cmmn.engine.impl.persistence.entity.data that return types with arguments of type CaseInstanceModifier and TypeMethodDescriptionCaseInstanceDataManager.findByCriteria(CaseInstanceQueryImpl query) CaseInstanceDataManager.findWithVariablesByCriteria(CaseInstanceQueryImpl query) Methods in org.flowable.cmmn.engine.impl.persistence.entity.data with parameters of type CaseInstanceModifier and TypeMethodDescriptionHistoricCaseInstanceDataManager.create(CaseInstance caseInstance) -
Uses of CaseInstance in org.flowable.cmmn.engine.impl.persistence.entity.data.impl
Methods in org.flowable.cmmn.engine.impl.persistence.entity.data.impl that return types with arguments of type CaseInstanceModifier and TypeMethodDescriptionMybatisCaseInstanceDataManagerImpl.findByCriteria(CaseInstanceQueryImpl query) MybatisCaseInstanceDataManagerImpl.findWithVariablesByCriteria(CaseInstanceQueryImpl query) Methods in org.flowable.cmmn.engine.impl.persistence.entity.data.impl with parameters of type CaseInstanceModifier and TypeMethodDescriptionMybatisHistoricCaseInstanceDataManagerImpl.create(CaseInstance caseInstance) -
Uses of CaseInstance in org.flowable.cmmn.engine.impl.reactivation
Methods in org.flowable.cmmn.engine.impl.reactivation that return CaseInstance -
Uses of CaseInstance in org.flowable.cmmn.engine.impl.runtime
Methods in org.flowable.cmmn.engine.impl.runtime that return CaseInstanceModifier and TypeMethodDescriptionCaseInstanceBuilderImpl.start()CaseInstanceBuilderImpl.startAsync()CmmnRuntimeServiceImpl.startCaseInstance(CaseInstanceBuilder caseInstanceBuilder) CmmnRuntimeServiceImpl.startCaseInstanceAsync(CaseInstanceBuilder caseInstanceBuilder) CaseInstanceBuilderImpl.startWithForm()Methods in org.flowable.cmmn.engine.impl.runtime that return types with arguments of type CaseInstanceModifier and TypeMethodDescriptionCaseInstanceQueryImpl.executeList(CommandContext commandContext) -
Uses of CaseInstance in org.flowable.cmmn.engine.impl.util
Methods in org.flowable.cmmn.engine.impl.util with parameters of type CaseInstanceModifier and TypeMethodDescriptionstatic IdentityLinkEntityIdentityLinkUtil.createCaseInstanceIdentityLink(CaseInstance caseInstance, String userId, String groupId, String type, CmmnEngineConfiguration cmmnEngineConfiguration) static voidIdentityLinkUtil.deleteCaseInstanceIdentityLinks(CaseInstance caseInstance, String userId, String groupId, String type, CmmnEngineConfiguration cmmnEngineConfiguration) -
Uses of CaseInstance in org.flowable.cmmn.engine.test
Methods in org.flowable.cmmn.engine.test that return CaseInstanceModifier and TypeMethodDescriptionprotected CaseInstanceAbstractFlowableCmmnTestCase.deployAndStartOneHumanTaskCaseModel()Methods in org.flowable.cmmn.engine.test with parameters of type CaseInstanceModifier and TypeMethodDescriptionprotected voidAbstractFlowableCmmnTestCase.assertCaseInstanceEnded(CaseInstance caseInstance) protected voidAbstractFlowableCmmnTestCase.assertCaseInstanceEnded(CaseInstance caseInstance, int nrOfExpectedMilestones) protected voidAbstractFlowableCmmnTestCase.assertCaseInstanceNotEnded(CaseInstance caseInstance) protected voidAbstractFlowableCmmnTestCase.assertPlanItemInstanceState(CaseInstance caseInstance, String name, String... states) protected voidAbstractFlowableCmmnTestCase.assertSamePlanItemState(CaseInstance c1) protected StringAbstractFlowableCmmnTestCase.createCaseInstanceEndedErrorMessage(CaseInstance caseInstance, long count) -
Uses of CaseInstance in org.flowable.cmmn.rest.service.api
Methods in org.flowable.cmmn.rest.service.api with parameters of type CaseInstanceModifier and TypeMethodDescriptionvoidCmmnRestApiInterceptor.accessCaseInstanceIdentityLink(CaseInstance caseInstance, IdentityLink identityLink) voidCmmnRestApiInterceptor.accessCaseInstanceIdentityLinks(CaseInstance caseInstance) voidCmmnRestApiInterceptor.accessCaseInstanceInfoById(CaseInstance caseInstance) voidCmmnRestApiInterceptor.accessCaseInstanceVariable(CaseInstance caseInstance, String variableName) CmmnRestApiInterceptor.accessCaseInstanceVariables(CaseInstance caseInstance, Map<String, Object> variables) voidCmmnRestApiInterceptor.accessStageOverview(CaseInstance caseInstance) voidCmmnRestApiInterceptor.createCaseInstanceIdentityLink(CaseInstance caseInstance, RestIdentityLink identityLink) CmmnRestResponseFactory.createCaseInstanceResponse(CaseInstance caseInstance) CmmnRestResponseFactory.createCaseInstanceResponse(CaseInstance caseInstance, boolean returnVariables, Map<String, Object> runtimeVariableMap) CmmnRestResponseFactory.createCaseInstanceResponse(CaseInstance caseInstance, RestUrlBuilder urlBuilder) voidCmmnRestApiInterceptor.createCaseInstanceVariables(CaseInstance caseInstance, Map<String, Object> variables) voidCmmnRestApiInterceptor.deleteCaseInstance(CaseInstance caseInstance) voidCmmnRestApiInterceptor.deleteCaseInstanceIdentityLink(CaseInstance caseInstance, IdentityLink identityLink) voidCmmnRestApiInterceptor.deleteCaseInstanceVariables(CaseInstance caseInstance, Collection<String> variableNames) voidCmmnRestApiInterceptor.doCaseInstanceAction(CaseInstance caseInstance, RestActionRequest actionRequest) voidCmmnRestApiInterceptor.terminateCaseInstance(CaseInstance caseInstance) voidCmmnRestApiInterceptor.updateCaseInstance(CaseInstance caseInstance, CaseInstanceUpdateRequest updateRequest) voidCmmnRestApiInterceptor.updateCaseInstanceVariables(CaseInstance caseInstance, Map<String, Object> variables) Method parameters in org.flowable.cmmn.rest.service.api with type arguments of type CaseInstanceModifier and TypeMethodDescriptionCmmnRestResponseFactory.createCaseInstanceResponseList(List<CaseInstance> caseInstances) -
Uses of CaseInstance in org.flowable.cmmn.rest.service.api.runtime.caze
Methods in org.flowable.cmmn.rest.service.api.runtime.caze that return CaseInstanceModifier and TypeMethodDescriptionprotected CaseInstanceBaseCaseInstanceResource.getCaseInstanceFromRequest(String caseInstanceId) Returns theCaseInstancethat is requested and calls the access interceptor.protected CaseInstanceBaseCaseInstanceResource.getCaseInstanceFromRequestWithoutAccessCheck(String caseInstanceId) Returns theCaseInstancethat is requested without calling the access interceptor Throws the right exceptions when bad request was made or instance was not found.Methods in org.flowable.cmmn.rest.service.api.runtime.caze with parameters of type CaseInstanceModifier and TypeMethodDescriptionprotected List<RestVariable>BaseVariableResource.addVariables(CaseInstance caseInstance) protected ObjectBaseVariableResource.createVariable(CaseInstance caseInstance, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) protected BaseVariableResource.VariableInterceptorBaseVariableResource.createVariableInterceptor(CaseInstance caseInstance) voidBaseVariableResource.deleteAllVariables(CaseInstance caseInstance) protected byte[]BaseVariableResource.getVariableDataByteArray(CaseInstance caseInstance, String variableName, jakarta.servlet.http.HttpServletResponse response) BaseVariableResource.getVariableFromRequest(CaseInstance caseInstance, String variableName, boolean includeBinary) protected List<RestVariable>BaseVariableResource.processCaseVariables(CaseInstance caseInstance)