org.camunda.bpm.engine.impl
Class DeploymentQueryImpl
java.lang.Object
org.camunda.bpm.engine.impl.db.AuthorizationCheck
org.camunda.bpm.engine.impl.db.ListQueryParameterObject
org.camunda.bpm.engine.impl.AbstractQuery<DeploymentQuery,Deployment>
org.camunda.bpm.engine.impl.DeploymentQueryImpl
- All Implemented Interfaces:
- Serializable, Command<Object>, Query<DeploymentQuery,Deployment>, DeploymentQuery
public class DeploymentQueryImpl
- extends AbstractQuery<DeploymentQuery,Deployment>
- implements DeploymentQuery, Serializable
- Author:
- Tom Baeyens, Joram Barrez
- See Also:
- Serialized Form
| Methods inherited from class org.camunda.bpm.engine.impl.AbstractQuery |
addExpression, addOrder, asc, checkQueryOk, count, desc, direction, evaluateExpressions, evaluateExpressionsAndExecuteCount, evaluateExpressionsAndExecuteList, execute, executeSingleResult, extend, getExpressions, getMethod, getOrderBy, list, listPage, mergeExpressions, mergeOrdering, orderBy, setCommandExecutor, setExpressions, singleResult |
| Methods inherited from class org.camunda.bpm.engine.impl.db.ListQueryParameterObject |
getDatabaseType, getFirstResult, getFirstRow, getLastRow, getMaxResults, getParameter, setDatabaseType, setFirstResult, setMaxResults, setOrderBy, setParameter |
| Methods inherited from class org.camunda.bpm.engine.impl.db.AuthorizationCheck |
getAuthDefaultPerm, getAuthGroupIds, getAuthPerms, getAuthResourceId, getAuthResourceIdQueryParam, getAuthResourceType, getAuthUserId, isAuthorizationCheckEnabled, setAuthDefaultPerm, setAuthGroupIds, setAuthorizationCheckEnabled, setAuthPerms, setAuthResourceId, setAuthResourceIdQueryParam, setAuthResourceType, setAuthUserId |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
deploymentId
protected String deploymentId
name
protected String name
nameLike
protected String nameLike
DeploymentQueryImpl
public DeploymentQueryImpl()
DeploymentQueryImpl
public DeploymentQueryImpl(CommandContext commandContext)
DeploymentQueryImpl
public DeploymentQueryImpl(CommandExecutor commandExecutor)
deploymentId
public DeploymentQueryImpl deploymentId(String deploymentId)
- Description copied from interface:
DeploymentQuery
- Only select deployments with the given deployment id.
- Specified by:
deploymentId in interface DeploymentQuery
deploymentName
public DeploymentQueryImpl deploymentName(String deploymentName)
- Description copied from interface:
DeploymentQuery
- Only select deployments with the given name.
- Specified by:
deploymentName in interface DeploymentQuery
deploymentNameLike
public DeploymentQueryImpl deploymentNameLike(String nameLike)
- Description copied from interface:
DeploymentQuery
- Only select deployments with a name like the given string.
- Specified by:
deploymentNameLike in interface DeploymentQuery
orderByDeploymentId
public DeploymentQuery orderByDeploymentId()
- Description copied from interface:
DeploymentQuery
- Order by deployment id (needs to be followed by
Query.asc() or Query.desc()).
- Specified by:
orderByDeploymentId in interface DeploymentQuery
orderByDeploymenTime
public DeploymentQuery orderByDeploymenTime()
- Description copied from interface:
DeploymentQuery
- Order by deployment time (needs to be followed by
Query.asc() or Query.desc()).
- Specified by:
orderByDeploymenTime in interface DeploymentQuery
orderByDeploymentName
public DeploymentQuery orderByDeploymentName()
- Description copied from interface:
DeploymentQuery
- Order by deployment name (needs to be followed by
Query.asc() or Query.desc()).
- Specified by:
orderByDeploymentName in interface DeploymentQuery
executeCount
public long executeCount(CommandContext commandContext)
- Specified by:
executeCount in class AbstractQuery<DeploymentQuery,Deployment>
executeList
public List<Deployment> executeList(CommandContext commandContext,
Page page)
- Description copied from class:
AbstractQuery
- Executes the actual query to retrieve the list of results.
- Specified by:
executeList in class AbstractQuery<DeploymentQuery,Deployment>
page - used if the results must be paged. If null, no paging will be applied.
getDeploymentId
public String getDeploymentId()
getName
public String getName()
getNameLike
public String getNameLike()
Copyright © 2014 camunda services GmbH. All Rights Reserved.