|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.camunda.bpm.engine.impl.db.ListQueryParameterObject
org.camunda.bpm.engine.impl.AbstractQuery<T,U>
org.camunda.bpm.engine.impl.AbstractVariableQueryImpl<HistoricIdentityLinkLogQuery,HistoricIdentityLinkLog>
org.camunda.bpm.engine.impl.HistoricIdentityLinkLogQueryImpl
public class HistoricIdentityLinkLogQueryImpl
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class org.camunda.bpm.engine.impl.AbstractQuery |
|---|
AbstractQuery.ResultType |
| Field Summary | |
|---|---|
protected String |
assignerId
|
protected Date |
dateAfter
|
protected Date |
dateBefore
|
protected String |
groupId
|
protected String |
operationType
|
protected String |
processDefinitionId
|
protected String |
processDefinitionKey
|
protected String |
taskId
|
protected String[] |
tenantIds
|
protected String |
type
|
protected String |
userId
|
| Fields inherited from class org.camunda.bpm.engine.impl.AbstractVariableQueryImpl |
|---|
queryVariableValues |
| Fields inherited from class org.camunda.bpm.engine.impl.AbstractQuery |
|---|
commandExecutor, expressions, resultType, SORTORDER_ASC, SORTORDER_DESC, validators |
| Fields inherited from class org.camunda.bpm.engine.impl.db.ListQueryParameterObject |
|---|
authCheck, databaseType, firstResult, maxResults, orderingProperties, parameter, tenantCheck |
| Constructor Summary | |
|---|---|
HistoricIdentityLinkLogQueryImpl()
|
|
HistoricIdentityLinkLogQueryImpl(CommandExecutor commandExecutor)
|
|
| Method Summary | |
|---|---|
HistoricIdentityLinkLogQuery |
assignerId(String assignerId)
Only select historic identity links which have the given assigner id. |
HistoricIdentityLinkLogQuery |
dateAfter(Date dateAfter)
Only select historic identity links which have the date after the give date. |
HistoricIdentityLinkLogQuery |
dateBefore(Date dateBefore)
Only select historic identity links which have the date before the give date. |
long |
executeCount(CommandContext commandContext)
|
List<HistoricIdentityLinkLog> |
executeList(CommandContext commandContext,
Page page)
Executes the actual query to retrieve the list of results. |
String |
getAssignerId()
|
Date |
getDateAfter()
|
Date |
getDateBefore()
|
String |
getGroupId()
|
String |
getOperationType()
|
String |
getProcessDefinitionId()
|
String |
getProcessDefinitionKey()
|
String |
getTaskId()
|
String |
getType()
|
String |
getUserId()
|
HistoricIdentityLinkLogQuery |
groupId(String groupId)
Only select historic identity links which have the given group id. |
HistoricIdentityLinkLogQuery |
operationType(String operationType)
Only select historic identity links which have the given operation type (add/delete). |
HistoricIdentityLinkLogQuery |
orderByAssignerId()
Order by assignerId (needs to be followed by Query.asc() or Query.desc()). |
HistoricIdentityLinkLogQuery |
orderByGroupId()
Order by groupId (needs to be followed by Query.asc() or Query.desc()). |
HistoricIdentityLinkLogQuery |
orderByOperationType()
Order by operationType (needs to be followed by Query.asc() or Query.desc()). |
HistoricIdentityLinkLogQuery |
orderByProcessDefinitionId()
Order by processDefinitionId (needs to be followed by Query.asc() or Query.desc()). |
HistoricIdentityLinkLogQuery |
orderByProcessDefinitionKey()
Order by processDefinitionKey (needs to be followed by Query.asc() or Query.desc()). |
HistoricIdentityLinkLogQuery |
orderByTaskId()
Order by taskId (needs to be followed by Query.asc() or Query.desc()). |
HistoricIdentityLinkLogQuery |
orderByTenantId()
Order by tenantId (needs to be followed by Query.asc() or Query.desc()). |
HistoricIdentityLinkLogQuery |
orderByTime()
Order by time (needs to be followed by Query.asc() or Query.desc()). |
HistoricIdentityLinkLogQuery |
orderByType()
Order by type (needs to be followed by Query.asc() or Query.desc()). |
HistoricIdentityLinkLogQuery |
orderByUserId()
Order by userId (needs to be followed by Query.asc() or Query.desc()). |
HistoricIdentityLinkLogQuery |
processDefinitionId(String processDefinitionId)
Only select historic identity links which have the given process definition id. |
HistoricIdentityLinkLogQuery |
processDefinitionKey(String processDefinitionKey)
Only select historic identity links which have the given process definition key. |
HistoricIdentityLinkLogQuery |
taskId(String taskId)
Only select historic identity links which have the given task id. |
HistoricIdentityLinkLogQuery |
tenantIdIn(String... tenantIds)
Only select historic identity links which have the given tenant id. |
HistoricIdentityLinkLogQuery |
type(String type)
Only select historic identity links which have the given identity link type. |
HistoricIdentityLinkLogQuery |
userId(String userId)
Only select historic identity links which have the given user id. |
| Methods inherited from class org.camunda.bpm.engine.impl.AbstractVariableQueryImpl |
|---|
addVariable, ensureVariablesInitialized, getQueryVariableValues, variableValueEquals, variableValueGreaterThan, variableValueGreaterThanOrEqual, variableValueLessThan, variableValueLessThanOrEqual, variableValueLike, variableValueNotEquals |
| Methods inherited from class org.camunda.bpm.engine.impl.AbstractQuery |
|---|
addExpression, addValidator, asc, checkQueryOk, count, desc, direction, evaluateExpressions, evaluateExpressionsAndExecuteCount, evaluateExpressionsAndExecuteIdsList, evaluateExpressionsAndExecuteList, execute, executeIdsList, executeSingleResult, extend, getExpressions, getMethod, hasExcludingConditions, list, listIds, listPage, mergeExpressions, mergeOrdering, orderBy, orderBy, removeValidator, setCommandExecutor, setExpressions, singleResult, validate, validate |
| Methods inherited from class org.camunda.bpm.engine.impl.db.ListQueryParameterObject |
|---|
getAuthCheck, getDatabaseType, getFirstResult, getFirstRow, getLastRow, getMaxResults, getOrderingProperties, getParameter, getTenantCheck, setAuthCheck, setDatabaseType, setFirstResult, setMaxResults, setOrderingProperties, setParameter, setTenantCheck |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.camunda.bpm.engine.query.Query |
|---|
asc, count, desc, list, listPage, singleResult |
| Field Detail |
|---|
protected Date dateBefore
protected Date dateAfter
protected String type
protected String userId
protected String groupId
protected String taskId
protected String processDefinitionId
protected String processDefinitionKey
protected String operationType
protected String assignerId
protected String[] tenantIds
| Constructor Detail |
|---|
public HistoricIdentityLinkLogQueryImpl()
public HistoricIdentityLinkLogQueryImpl(CommandExecutor commandExecutor)
| Method Detail |
|---|
public String getType()
public String getUserId()
public String getGroupId()
public String getTaskId()
public String getProcessDefinitionId()
public String getProcessDefinitionKey()
public String getOperationType()
public String getAssignerId()
public HistoricIdentityLinkLogQuery tenantIdIn(String... tenantIds)
HistoricIdentityLinkLogQuery
tenantIdIn in interface HistoricIdentityLinkLogQuerypublic Date getDateBefore()
public Date getDateAfter()
public HistoricIdentityLinkLogQuery type(String type)
HistoricIdentityLinkLogQuery
type in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery dateBefore(Date dateBefore)
HistoricIdentityLinkLogQuery
dateBefore in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery dateAfter(Date dateAfter)
HistoricIdentityLinkLogQuery
dateAfter in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery userId(String userId)
HistoricIdentityLinkLogQuery
userId in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery groupId(String groupId)
HistoricIdentityLinkLogQuery
groupId in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery taskId(String taskId)
HistoricIdentityLinkLogQuery
taskId in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery processDefinitionId(String processDefinitionId)
HistoricIdentityLinkLogQuery
processDefinitionId in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery processDefinitionKey(String processDefinitionKey)
HistoricIdentityLinkLogQuery
processDefinitionKey in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery operationType(String operationType)
HistoricIdentityLinkLogQuery
operationType in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery assignerId(String assignerId)
HistoricIdentityLinkLogQuery
assignerId in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery orderByTime()
HistoricIdentityLinkLogQueryQuery.asc() or Query.desc()).
orderByTime in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery orderByType()
HistoricIdentityLinkLogQueryQuery.asc() or Query.desc()).
orderByType in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery orderByUserId()
HistoricIdentityLinkLogQueryQuery.asc() or Query.desc()).
orderByUserId in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery orderByGroupId()
HistoricIdentityLinkLogQueryQuery.asc() or Query.desc()).
orderByGroupId in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery orderByTaskId()
HistoricIdentityLinkLogQueryQuery.asc() or Query.desc()).
orderByTaskId in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery orderByProcessDefinitionId()
HistoricIdentityLinkLogQueryQuery.asc() or Query.desc()).
orderByProcessDefinitionId in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery orderByProcessDefinitionKey()
HistoricIdentityLinkLogQueryQuery.asc() or Query.desc()).
orderByProcessDefinitionKey in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery orderByOperationType()
HistoricIdentityLinkLogQueryQuery.asc() or Query.desc()).
orderByOperationType in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery orderByAssignerId()
HistoricIdentityLinkLogQueryQuery.asc() or Query.desc()).
orderByAssignerId in interface HistoricIdentityLinkLogQuerypublic HistoricIdentityLinkLogQuery orderByTenantId()
HistoricIdentityLinkLogQueryQuery.asc() or Query.desc()).
orderByTenantId in interface HistoricIdentityLinkLogQuerypublic long executeCount(CommandContext commandContext)
executeCount in class AbstractVariableQueryImpl<HistoricIdentityLinkLogQuery,HistoricIdentityLinkLog>
public List<HistoricIdentityLinkLog> executeList(CommandContext commandContext,
Page page)
AbstractQuery
executeList in class AbstractVariableQueryImpl<HistoricIdentityLinkLogQuery,HistoricIdentityLinkLog>page - used if the results must be paged. If null, no paging will be applied.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||