Class HistoricActionLinkQueryImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.db.ListQueryParameterObject
-
- org.flowable.common.engine.impl.query.AbstractQuery<HistoricActionLinkQuery,HistoricActionLink>
-
- com.flowable.action.engine.impl.history.HistoricActionLinkQueryImpl
-
- All Implemented Interfaces:
HistoricActionLinkQuery
,Serializable
,CacheAwareQuery<HistoricActionLinkEntity>
,Query<HistoricActionLinkQuery,HistoricActionLink>
,Command<Object>
public class HistoricActionLinkQueryImpl extends AbstractQuery<HistoricActionLinkQuery,HistoricActionLink> implements HistoricActionLinkQuery, CacheAwareQuery<HistoricActionLinkEntity>, Serializable
- Author:
- Joram Barrez
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.flowable.common.engine.impl.db.ListQueryParameterObject
ListQueryParameterObject.OrderBy, ListQueryParameterObject.ResultType
-
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
-
Field Summary
Fields Modifier and Type Field Description protected String
actionDefinitionId
protected String
actionInstanceId
protected Date
createdAfter
protected Date
createdBefore
protected String
id
protected Set<String>
ids
protected String
scopeId
protected String
scopeType
-
Fields inherited from class org.flowable.common.engine.impl.query.AbstractQuery
commandContext, commandExecutor
-
Fields inherited from class org.flowable.common.engine.impl.db.ListQueryParameterObject
databaseType, DEFAULT_ORDER_BY, defaultOrderBy, firstResult, maxResults, nullHandlingColumn, nullHandlingOnOrder, orderByCollection, orderProperty, parameter, resultType, SORTORDER_ASC, SORTORDER_DESC
-
-
Constructor Summary
Constructors Constructor Description HistoricActionLinkQueryImpl()
HistoricActionLinkQueryImpl(CommandContext commandContext)
HistoricActionLinkQueryImpl(CommandExecutor commandExecutor)
-
Method Summary
-
Methods inherited from class org.flowable.common.engine.impl.query.AbstractQuery
asc, checkQueryOk, count, desc, direction, execute, executeSingleResult, list, listPage, orderBy, orderBy, setCommandExecutor, singleResult
-
Methods inherited from class org.flowable.common.engine.impl.db.ListQueryParameterObject
addOrder, buildOrderBy, getDatabaseType, getFirstResult, getFirstRow, getLastRow, getMaxResults, getNullHandlingColumn, getOrderBy, getOrderByCollectionSafe, getOrderByForWindow, getOuterJoinOrderBy, getParameter, hasOrderBy, hasOrderByForColumn, isNeedsPaging, mapOrderByToSql, setDatabaseType, setFirstResult, setMaxResults, setNullHandlingColumn, setParameter
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.flowable.common.engine.api.query.CacheAwareQuery
enhanceCachedValue
-
-
-
-
Constructor Detail
-
HistoricActionLinkQueryImpl
public HistoricActionLinkQueryImpl()
-
HistoricActionLinkQueryImpl
public HistoricActionLinkQueryImpl(CommandContext commandContext)
-
HistoricActionLinkQueryImpl
public HistoricActionLinkQueryImpl(CommandExecutor commandExecutor)
-
-
Method Detail
-
id
public HistoricActionLinkQueryImpl id(String id)
- Specified by:
id
in interfaceHistoricActionLinkQuery
-
ids
public HistoricActionLinkQueryImpl ids(Set<String> ids)
- Specified by:
ids
in interfaceHistoricActionLinkQuery
-
actionInstanceId
public HistoricActionLinkQuery actionInstanceId(String actionInstanceId)
- Specified by:
actionInstanceId
in interfaceHistoricActionLinkQuery
-
actionDefinitionId
public HistoricActionLinkQueryImpl actionDefinitionId(String actionDefinitionId)
- Specified by:
actionDefinitionId
in interfaceHistoricActionLinkQuery
-
scopeId
public HistoricActionLinkQueryImpl scopeId(String scopeId)
- Specified by:
scopeId
in interfaceHistoricActionLinkQuery
-
scopeType
public HistoricActionLinkQueryImpl scopeType(String scopeType)
- Specified by:
scopeType
in interfaceHistoricActionLinkQuery
-
createdBefore
public HistoricActionLinkQuery createdBefore(Date beforeTime)
- Specified by:
createdBefore
in interfaceHistoricActionLinkQuery
-
createdAfter
public HistoricActionLinkQuery createdAfter(Date afterTime)
- Specified by:
createdAfter
in interfaceHistoricActionLinkQuery
-
executeCount
public long executeCount(CommandContext commandContext)
- Specified by:
executeCount
in classAbstractQuery<HistoricActionLinkQuery,HistoricActionLink>
-
executeList
public List<HistoricActionLink> executeList(CommandContext commandContext)
- Specified by:
executeList
in classAbstractQuery<HistoricActionLinkQuery,HistoricActionLink>
-
getId
public String getId()
- Specified by:
getId
in interfaceCacheAwareQuery<HistoricActionLinkEntity>
-
setId
public void setId(String id)
-
getActionInstanceId
public String getActionInstanceId()
-
setActionInstanceId
public void setActionInstanceId(String actionInstanceId)
-
getActionDefinitionId
public String getActionDefinitionId()
-
setActionDefinitionId
public void setActionDefinitionId(String actionDefinitionId)
-
getScopeId
public String getScopeId()
-
setScopeId
public void setScopeId(String scopeId)
-
getScopeType
public String getScopeType()
-
setScopeType
public void setScopeType(String scopeType)
-
getCreatedBefore
public Date getCreatedBefore()
-
setCreatedBefore
public void setCreatedBefore(Date createdBefore)
-
getCreatedAfter
public Date getCreatedAfter()
-
setCreatedAfter
public void setCreatedAfter(Date createdAfter)
-
-