Interface FlowableChangeTenantIdEvent
-
- All Superinterfaces:
FlowableEvent
public interface FlowableChangeTenantIdEvent extends FlowableEvent
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDefinitionTenantId()The id of the definition tenant whose instances need to be moved.StringgetEngineScopeType()The scope type of the engine for which the change tenant id was doneStringgetSourceTenantId()The id of the tenant from which the data needs to be movedStringgetTargetTenantId()The id of the tenant to which the data needs to be moved-
Methods inherited from interface org.flowable.common.engine.api.delegate.event.FlowableEvent
getType
-
-
-
-
Method Detail
-
getEngineScopeType
String getEngineScopeType()
The scope type of the engine for which the change tenant id was done
-
getSourceTenantId
String getSourceTenantId()
The id of the tenant from which the data needs to be moved
-
getTargetTenantId
String getTargetTenantId()
The id of the tenant to which the data needs to be moved
-
getDefinitionTenantId
String getDefinitionTenantId()
The id of the definition tenant whose instances need to be moved.
-
-