Class ActionLinkQueryImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.db.ListQueryParameterObject
-
- org.flowable.common.engine.impl.query.AbstractQuery<ActionLinkQuery,ActionLink>
-
- com.flowable.action.engine.impl.runtime.ActionLinkQueryImpl
-
- All Implemented Interfaces:
ActionLinkQuery
,Serializable
,CacheAwareQuery<ActionLinkEntity>
,Query<ActionLinkQuery,ActionLink>
,Command<Object>
public class ActionLinkQueryImpl extends AbstractQuery<ActionLinkQuery,ActionLink> implements ActionLinkQuery, CacheAwareQuery<ActionLinkEntity>
- 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 ActionLinkQueryImpl()
ActionLinkQueryImpl(CommandContext commandContext)
ActionLinkQueryImpl(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
-
ActionLinkQueryImpl
public ActionLinkQueryImpl()
-
ActionLinkQueryImpl
public ActionLinkQueryImpl(CommandContext commandContext)
-
ActionLinkQueryImpl
public ActionLinkQueryImpl(CommandExecutor commandExecutor)
-
-
Method Detail
-
id
public ActionLinkQueryImpl id(String id)
- Specified by:
id
in interfaceActionLinkQuery
-
ids
public ActionLinkQueryImpl ids(Set<String> ids)
- Specified by:
ids
in interfaceActionLinkQuery
-
actionInstanceId
public ActionLinkQuery actionInstanceId(String actionInstanceId)
- Specified by:
actionInstanceId
in interfaceActionLinkQuery
-
actionDefinitionId
public ActionLinkQueryImpl actionDefinitionId(String actionDefinitionId)
- Specified by:
actionDefinitionId
in interfaceActionLinkQuery
-
scopeId
public ActionLinkQueryImpl scopeId(String scopeId)
- Specified by:
scopeId
in interfaceActionLinkQuery
-
scopeType
public ActionLinkQueryImpl scopeType(String scopeType)
- Specified by:
scopeType
in interfaceActionLinkQuery
-
createdBefore
public ActionLinkQuery createdBefore(Date beforeTime)
- Specified by:
createdBefore
in interfaceActionLinkQuery
-
createdAfter
public ActionLinkQuery createdAfter(Date afterTime)
- Specified by:
createdAfter
in interfaceActionLinkQuery
-
executeCount
public long executeCount(CommandContext commandContext)
- Specified by:
executeCount
in classAbstractQuery<ActionLinkQuery,ActionLink>
-
executeList
public List<ActionLink> executeList(CommandContext commandContext)
- Specified by:
executeList
in classAbstractQuery<ActionLinkQuery,ActionLink>
-
getId
public String getId()
- Specified by:
getId
in interfaceCacheAwareQuery<ActionLinkEntity>
-
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)
-
-