T
- public interface AuditDeleteBuilder<T> extends ParametrizedQueryBuilder<T>
Modifier and Type | Method and Description |
---|---|
ParametrizedUpdate |
build()
Create the
ParametrizedUpdate instance that can be used
to execute an update or delete of the entities that this builder is for. |
T |
logBelongsToProcessInDeployment(String deploymentId)
Specify deployment id that process instance should be in as criteria in the query.
|
T |
logBelongsToProcessInStatus(Integer... statuses)
Specify one or more status that process instance should be in as criteria in the query.
|
T |
processId(String... processId)
Specify one or more process (definition) id's as criteria in the query
|
T |
processInstanceId(long... processInstanceId)
Specify one or more process instance ids as criteria in the query
|
T |
recordsPerTransaction(int numRecords)
Specify the number of records to be included per transaction.
|
T processInstanceId(long... processInstanceId)
processInstanceId
- one or more a process instance idsT processId(String... processId)
processId
- one or more process idsT logBelongsToProcessInStatus(Integer... statuses)
statuses
- @see org.kie.api.runtime.process.ProcessInstanceT logBelongsToProcessInDeployment(String deploymentId)
the
- deployment idT recordsPerTransaction(int numRecords)
numRecords
- number of records (0 means all records will be processed into one single transaction)ParametrizedUpdate build()
ParametrizedUpdate
instance that can be used
to execute an update or delete of the entities that this builder is for.
Further modifications to this builder instance
will not affect the query criteria used in the ParametrizedUpdate
produced by this method.ParametrizedUpdate
instance that can be executed.Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.