Package com.flowable.platform.api.manage
Interface PlatformChangeTenantIdBuilder
-
- All Known Implementing Classes:
PlatformChangeTenantIdBuilderImpl
public interface PlatformChangeTenantIdBuilder- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChangeTenantIdResultcomplete()Executes change in the tenant id, returning the number of instances that were affectedPlatformChangeTenantIdBuilderdefinitionTenantId(String definitionTenantId)Perform the change only for instances that were created using a definition from the given tenant.PlatformChangeTenantIdBuilderscopeTypes(Collection<String> scopeTypes)Perform the change for the defined engine scope typesChangeTenantIdResultsimulate()Executes a simulation of the change of tenant id, calculating the number of instances that will be affected
-
-
-
Method Detail
-
definitionTenantId
PlatformChangeTenantIdBuilder definitionTenantId(String definitionTenantId)
Perform the change only for instances that were created using a definition from the given tenant.
-
scopeTypes
PlatformChangeTenantIdBuilder scopeTypes(Collection<String> scopeTypes)
Perform the change for the defined engine scope types
-
simulate
ChangeTenantIdResult simulate()
Executes a simulation of the change of tenant id, calculating the number of instances that will be affected- Returns:
ChangeTenantIdResult
-
complete
ChangeTenantIdResult complete()
Executes change in the tenant id, returning the number of instances that were affected- Returns:
ChangeTenantIdResult
-
-