Class SetRemovalTimeToHistoricDecisionInstancesBuilderImpl
- java.lang.Object
-
- org.camunda.bpm.engine.impl.history.SetRemovalTimeToHistoricDecisionInstancesBuilderImpl
-
- All Implemented Interfaces:
SetRemovalTimeSelectModeForHistoricDecisionInstancesBuilder,SetRemovalTimeToHistoricDecisionInstancesBuilder
public class SetRemovalTimeToHistoricDecisionInstancesBuilderImpl extends java.lang.Object implements SetRemovalTimeSelectModeForHistoricDecisionInstancesBuilder
- Author:
- Tassilo Weidner
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSetRemovalTimeToHistoricDecisionInstancesBuilderImpl.Mode
-
Field Summary
Fields Modifier and Type Field Description protected CommandExecutorcommandExecutorprotected java.util.List<java.lang.String>idsprotected booleanisHierarchicalprotected SetRemovalTimeToHistoricDecisionInstancesBuilderImpl.Modemodeprotected HistoricDecisionInstanceQueryqueryprotected java.util.DateremovalTime
-
Constructor Summary
Constructors Constructor Description SetRemovalTimeToHistoricDecisionInstancesBuilderImpl(CommandExecutor commandExecutor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SetRemovalTimeToHistoricDecisionInstancesBuilderabsoluteRemovalTime(java.util.Date removalTime)Sets the removal time to an absolute date.SetRemovalTimeToHistoricDecisionInstancesBuilderbyIds(java.lang.String... ids)Selects historic process instances by the given ids.SetRemovalTimeToHistoricDecisionInstancesBuilderbyQuery(HistoricDecisionInstanceQuery query)Selects historic decision instances by the given query.SetRemovalTimeToHistoricDecisionInstancesBuildercalculatedRemovalTime()Calculates the removal time dynamically based on the respective decision definition time to live and the engine's removal time strategy.SetRemovalTimeToHistoricDecisionInstancesBuilderclearedRemovalTime()Sets the removal time tonull.BatchexecuteAsync()Sets the removal time asynchronously as batch.java.util.List<java.lang.String>getIds()SetRemovalTimeToHistoricDecisionInstancesBuilderImpl.ModegetMode()HistoricDecisionInstanceQuerygetQuery()java.util.DategetRemovalTime()SetRemovalTimeToHistoricDecisionInstancesBuilderhierarchical()Takes additionally historic decision instances into account that are part of the hierarchy of the given historic decision instances.booleanisHierarchical()
-
-
-
Field Detail
-
query
protected HistoricDecisionInstanceQuery query
-
ids
protected java.util.List<java.lang.String> ids
-
removalTime
protected java.util.Date removalTime
-
mode
protected SetRemovalTimeToHistoricDecisionInstancesBuilderImpl.Mode mode
-
isHierarchical
protected boolean isHierarchical
-
commandExecutor
protected CommandExecutor commandExecutor
-
-
Constructor Detail
-
SetRemovalTimeToHistoricDecisionInstancesBuilderImpl
public SetRemovalTimeToHistoricDecisionInstancesBuilderImpl(CommandExecutor commandExecutor)
-
-
Method Detail
-
byQuery
public SetRemovalTimeToHistoricDecisionInstancesBuilder byQuery(HistoricDecisionInstanceQuery query)
Description copied from interface:SetRemovalTimeToHistoricDecisionInstancesBuilderSelects historic decision instances by the given query.- Specified by:
byQueryin interfaceSetRemovalTimeToHistoricDecisionInstancesBuilder- Parameters:
query- to be evaluated.- Returns:
- the builder.
-
byIds
public SetRemovalTimeToHistoricDecisionInstancesBuilder byIds(java.lang.String... ids)
Description copied from interface:SetRemovalTimeToHistoricDecisionInstancesBuilderSelects historic process instances by the given ids.- Specified by:
byIdsin interfaceSetRemovalTimeToHistoricDecisionInstancesBuilder- Parameters:
ids- supposed to be affected.- Returns:
- the builder.
-
absoluteRemovalTime
public SetRemovalTimeToHistoricDecisionInstancesBuilder absoluteRemovalTime(java.util.Date removalTime)
Description copied from interface:SetRemovalTimeSelectModeForHistoricDecisionInstancesBuilderSets the removal time to an absolute date.- Specified by:
absoluteRemovalTimein interfaceSetRemovalTimeSelectModeForHistoricDecisionInstancesBuilder- Parameters:
removalTime- supposed to be set to historic entities.- Returns:
- the builder.
-
calculatedRemovalTime
public SetRemovalTimeToHistoricDecisionInstancesBuilder calculatedRemovalTime()
Description copied from interface:SetRemovalTimeSelectModeForHistoricDecisionInstancesBuilderCalculates the removal time dynamically based on the respective decision definition time to live and the engine's removal time strategy.
In case
SetRemovalTimeToHistoricDecisionInstancesBuilder.hierarchical()is enabled, the removal time is being calculated based on the base time and time to live of the historic root decision instance.- Specified by:
calculatedRemovalTimein interfaceSetRemovalTimeSelectModeForHistoricDecisionInstancesBuilder- Returns:
- the builder.
-
clearedRemovalTime
public SetRemovalTimeToHistoricDecisionInstancesBuilder clearedRemovalTime()
Description copied from interface:SetRemovalTimeSelectModeForHistoricDecisionInstancesBuilderSets the removal time to
null.- Specified by:
clearedRemovalTimein interfaceSetRemovalTimeSelectModeForHistoricDecisionInstancesBuilder- Returns:
- the builder.
-
hierarchical
public SetRemovalTimeToHistoricDecisionInstancesBuilder hierarchical()
Description copied from interface:SetRemovalTimeToHistoricDecisionInstancesBuilderTakes additionally historic decision instances into account that are part of the hierarchy of the given historic decision instances. If the root decision instance id of the given historic decision instance isnull, the hierarchy is ignored. This is the case for instances that were started with a version prior 7.10.- Specified by:
hierarchicalin interfaceSetRemovalTimeToHistoricDecisionInstancesBuilder- Returns:
- the builder.
-
executeAsync
public Batch executeAsync()
Description copied from interface:SetRemovalTimeToHistoricDecisionInstancesBuilderSets the removal time asynchronously as batch. The returned batch can be used to track the progress of setting a removal time.- Specified by:
executeAsyncin interfaceSetRemovalTimeToHistoricDecisionInstancesBuilder- Returns:
- the batch which sets the removal time asynchronously.
-
getQuery
public HistoricDecisionInstanceQuery getQuery()
-
getIds
public java.util.List<java.lang.String> getIds()
-
getRemovalTime
public java.util.Date getRemovalTime()
-
getMode
public SetRemovalTimeToHistoricDecisionInstancesBuilderImpl.Mode getMode()
-
isHierarchical
public boolean isHierarchical()
-
-