public interface ExecutableQuery
This interface supports implementations that use pre-defined queries. In contrast to stored queries, the queries can be customized before calling the query() method.
The get methods of this interface are called by the HumanTaskManagerDelegate when the query is set up. The setQueryResultSet() method of this interface is called to store the result of the query.
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
COPYRIGHT |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getOrderByClause()
Retrieves the orderBy-clause of the query to be executed.
|
java.lang.String |
getSelectClause()
Retrieves the select-clause of the query to be executed.
|
java.lang.Integer |
getThreshold()
Retrieves the threshold of the query to be executed.
|
java.util.TimeZone |
getTimezone()
Retrieves the timezone that is to be used for time values in the where-clause
and in the query result set.
|
java.lang.String |
getWhereClause()
Retrieves the where-clause of the query to be executed.
|
void |
setQueryResultSet(QueryResultSet queryResultSet)
Sets the result of the query.
|
static final java.lang.String COPYRIGHT
java.lang.String getSelectClause()
java.lang.String getWhereClause()
java.lang.String getOrderByClause()
java.lang.Integer getThreshold()
java.util.TimeZone getTimezone()
void setQueryResultSet(QueryResultSet queryResultSet)
queryResultSet
- The result of the query as provided by the Human Task Manager API.