Package org.openapitools.client.model
Class HistoryCleanupConfigurationDto
- java.lang.Object
-
- org.openapitools.client.model.HistoryCleanupConfigurationDto
-
public class HistoryCleanupConfigurationDto extends Object
HistoryCleanupConfigurationDto
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_BATCH_WINDOW_END_TIMEstatic StringSERIALIZED_NAME_BATCH_WINDOW_START_TIMEstatic StringSERIALIZED_NAME_ENABLED
-
Constructor Summary
Constructors Constructor Description HistoryCleanupConfigurationDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HistoryCleanupConfigurationDtobatchWindowEndTime(Date batchWindowEndTime)HistoryCleanupConfigurationDtobatchWindowStartTime(Date batchWindowStartTime)HistoryCleanupConfigurationDtoenabled(Boolean enabled)booleanequals(Object o)DategetBatchWindowEndTime()End time of the current or next batch window.DategetBatchWindowStartTime()Start time of the current or next batch window.BooleangetEnabled()Indicates whether the engine node participates in history cleanup or not.inthashCode()voidsetBatchWindowEndTime(Date batchWindowEndTime)voidsetBatchWindowStartTime(Date batchWindowStartTime)voidsetEnabled(Boolean enabled)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_BATCH_WINDOW_START_TIME
public static final String SERIALIZED_NAME_BATCH_WINDOW_START_TIME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_BATCH_WINDOW_END_TIME
public static final String SERIALIZED_NAME_BATCH_WINDOW_END_TIME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ENABLED
public static final String SERIALIZED_NAME_ENABLED
- See Also:
- Constant Field Values
-
-
Method Detail
-
batchWindowStartTime
public HistoryCleanupConfigurationDto batchWindowStartTime(Date batchWindowStartTime)
-
getBatchWindowStartTime
public Date getBatchWindowStartTime()
Start time of the current or next batch window. By [default](https://docs.camunda.org/manual/7.18/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.- Returns:
- batchWindowStartTime
-
setBatchWindowStartTime
public void setBatchWindowStartTime(Date batchWindowStartTime)
-
batchWindowEndTime
public HistoryCleanupConfigurationDto batchWindowEndTime(Date batchWindowEndTime)
-
getBatchWindowEndTime
public Date getBatchWindowEndTime()
End time of the current or next batch window. By [default](https://docs.camunda.org/manual/7.18/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.- Returns:
- batchWindowEndTime
-
setBatchWindowEndTime
public void setBatchWindowEndTime(Date batchWindowEndTime)
-
enabled
public HistoryCleanupConfigurationDto enabled(Boolean enabled)
-
getEnabled
public Boolean getEnabled()
Indicates whether the engine node participates in history cleanup or not. The default is `true`. Participation can be disabled via [Process Engine Configuration](https://docs.camunda.org/manual/7.18/reference/deployment-descriptors/tags/process-engine/#history-cleanup-enabled). For more details, see [Cleanup Execution Participation per Node](https://docs.camunda.org/manual/7.18/user-guide/process-engine/history/#cleanup-execution-participation-per-node).- Returns:
- enabled
-
setEnabled
public void setEnabled(Boolean enabled)
-
-