Interface AuditDateDeleteBuilder<T>
- Type Parameters:
T-
- All Superinterfaces:
AuditDeleteBuilder<T>,ParametrizedQueryBuilder<T>
- All Known Subinterfaces:
AuditTaskDeleteBuilder,ErrorInfoDeleteBuilder,NodeInstanceLogDeleteBuilder,TaskEventDeleteBuilder,TaskVariableDeleteBuilder,VariableInstanceLogDeleteBuilder
This interface defines methods that are used by all of the Audit delete query builder implementations.
-
Method Summary
Modifier and TypeMethodDescriptionSpecify one or more dates as criteria in the querydateRangeEnd(Date rangeEnd) Specify the end of a date range to be used as a criteria on the date field.dateRangeStart(Date rangeStart) Specify the begin of a date range to be used as a criteria on the date field.Methods inherited from interface org.kie.internal.runtime.manager.audit.query.AuditDeleteBuilder
build, logBelongsToProcessInDeployment, logBelongsToProcessInStatus, processId, processInstanceId, recordsPerTransaction
-
Method Details
-
date
Specify one or more dates as criteria in the query- Parameters:
date- one or more dates- Returns:
- The current query builder instance
-
dateRangeStart
Specify the begin of a date range to be used as a criteria on the date field. The date range includes the date specified.- Parameters:
rangeStart- the start (early end) of the date range- Returns:
- The current query builder instance
-
dateRangeEnd
Specify the end of a date range to be used as a criteria on the date field. The date range includes this date.- Parameters:
rangeEnd- the end (later end) of the date range- Returns:
- The current query builder instance
-