public interface VariableInstanceLogQueryBuilder extends AuditQueryBuilder<VariableInstanceLogQueryBuilder>
Modifier and Type | Interface and Description |
---|---|
static class |
VariableInstanceLogQueryBuilder.OrderBy |
Modifier and Type | Method and Description |
---|---|
ParametrizedQuery<org.kie.api.runtime.manager.audit.VariableInstanceLog> |
buildQuery()
Create the
ParametrizedQuery instance that can be used
to retrieve the results, a List instance. |
VariableInstanceLogQueryBuilder |
date(Date... date)
Specify one or more dates as criteria in the query
|
VariableInstanceLogQueryBuilder |
dateRangeEnd(Date rangeStart)
Specify the end of a date range to be used as a criteria on the date field.
|
VariableInstanceLogQueryBuilder |
dateRangeStart(Date rangeStart)
Specify the begin of a date range to be used as a criteria on the date field.
|
VariableInstanceLogQueryBuilder |
externalId(String... externalId)
Specify one or more external ids to use as a criteria.
|
VariableInstanceLogQueryBuilder |
last()
Only retrieve the most recent ("last") variable instance logs per variable
|
VariableInstanceLogQueryBuilder |
oldValue(String... oldVvalue)
Specify one or more old (previous) variable values to use as a criteria.
|
VariableInstanceLogQueryBuilder |
orderBy(VariableInstanceLogQueryBuilder.OrderBy field)
Specify how the results of the query should be ordered.
|
VariableInstanceLogQueryBuilder |
value(String... value)
Specify one or more variable values to use as a criteria.
|
VariableInstanceLogQueryBuilder |
variableId(String... variableId)
Specify one or more variable ids to use as a criteria.
|
VariableInstanceLogQueryBuilder |
variableInstanceId(String... variableInstanceId)
Specify one or more variable instance ids to use as a criteria.
|
VariableInstanceLogQueryBuilder |
variableValue(String variableId,
String value)
Specify the value that variable instance logs should have
|
processId, processInstanceId
ascending, clear, descending, equals, intersect, like, maxResults, offset, union
VariableInstanceLogQueryBuilder date(Date... date)
date
- one or more datesVariableInstanceLogQueryBuilder dateRangeStart(Date rangeStart)
date
- the start (early end) of the date rangeVariableInstanceLogQueryBuilder dateRangeEnd(Date rangeStart)
date
- the end (later end) of the date rangeVariableInstanceLogQueryBuilder variableInstanceId(String... variableInstanceId)
variableInstanceId
- one or more string variable instance idsVariableInstanceLogQueryBuilder variableId(String... variableId)
variableId
- one or more string variable idsVariableInstanceLogQueryBuilder value(String... value)
value
- one or more string valuesVariableInstanceLogQueryBuilder oldValue(String... oldVvalue)
oldVvalue
- one or more string old valuesVariableInstanceLogQueryBuilder variableValue(String variableId, String value)
variableId
- the String variable idvalue
- the String value of the variableVariableInstanceLogQueryBuilder externalId(String... externalId)
externalId
- one or more string external idsVariableInstanceLogQueryBuilder last()
VariableInstanceLogQueryBuilder orderBy(VariableInstanceLogQueryBuilder.OrderBy field)
field
- the field by which the query results should be orderedParametrizedQuery<org.kie.api.runtime.manager.audit.VariableInstanceLog> buildQuery()
ParametrizedQuery
instance that can be used
to retrieve the results, a List
instance.
Further modifications to the VariableInstanceLogQueryBuilder
instance
will not affect the query criteria used in the ParametrizedQuery
produced by this method.Copyright © 2001-2015 JBoss by Red Hat. All Rights Reserved.