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 StringactionDefinitionIdprotected StringactionInstanceIdprotected DatecreatedAfterprotected DatecreatedBeforeprotected Stringidprotected Set<String>idsprotected StringscopeIdprotected StringscopeType-
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:
idin interfaceActionLinkQuery
-
ids
public ActionLinkQueryImpl ids(Set<String> ids)
- Specified by:
idsin interfaceActionLinkQuery
-
actionInstanceId
public ActionLinkQuery actionInstanceId(String actionInstanceId)
- Specified by:
actionInstanceIdin interfaceActionLinkQuery
-
actionDefinitionId
public ActionLinkQueryImpl actionDefinitionId(String actionDefinitionId)
- Specified by:
actionDefinitionIdin interfaceActionLinkQuery
-
scopeId
public ActionLinkQueryImpl scopeId(String scopeId)
- Specified by:
scopeIdin interfaceActionLinkQuery
-
scopeType
public ActionLinkQueryImpl scopeType(String scopeType)
- Specified by:
scopeTypein interfaceActionLinkQuery
-
createdBefore
public ActionLinkQuery createdBefore(Date beforeTime)
- Specified by:
createdBeforein interfaceActionLinkQuery
-
createdAfter
public ActionLinkQuery createdAfter(Date afterTime)
- Specified by:
createdAfterin interfaceActionLinkQuery
-
executeCount
public long executeCount(CommandContext commandContext)
- Specified by:
executeCountin classAbstractQuery<ActionLinkQuery,ActionLink>
-
executeList
public List<ActionLink> executeList(CommandContext commandContext)
- Specified by:
executeListin classAbstractQuery<ActionLinkQuery,ActionLink>
-
getId
public String getId()
- Specified by:
getIdin 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)
-
-