org.activiti.engine.repository
接口 DeploymentQuery

所有超级接口:
Query<DeploymentQuery,Deployment>
所有已知实现类:
DeploymentQueryImpl

public interface DeploymentQuery
extends Query<DeploymentQuery,Deployment>

Allows programmatic querying of Deployments. Note that it is impossible to retrieve the deployment resources through the results of this operation, since that would cause a huge transfer of (possibly) unneeded bytes over the wire. To retrieve the actual bytes of a deployment resource use the operations on the RepositoryService.getDeploymentResourceNames(String) and RepositoryService.getResourceAsStream(String, String)

作者:
Tom Baeyens, Joram Barrez

方法摘要
 DeploymentQuery deploymentCategory(String category)
          Only select deployments with the given category.
 DeploymentQuery deploymentCategoryNotEquals(String categoryNotEquals)
          Only select deployments that have a different category then the given one.
 DeploymentQuery deploymentId(String deploymentId)
          Only select deployments with the given deployment id.
 DeploymentQuery deploymentName(String name)
          Only select deployments with the given name.
 DeploymentQuery deploymentNameLike(String nameLike)
          Only select deployments with a name like the given string.
 DeploymentQuery orderByDeploymentId()
          Order by deployment id (needs to be followed by Query.asc() or Query.desc()).
 DeploymentQuery orderByDeploymenTime()
          Order by deployment time (needs to be followed by Query.asc() or Query.desc()).
 DeploymentQuery orderByDeploymentName()
          Order by deployment name (needs to be followed by Query.asc() or Query.desc()).
 DeploymentQuery processDefinitionKey(String key)
          Only select deployments with the given process definition key.
 DeploymentQuery processDefinitionKeyLike(String keyLike)
          Only select deployments with a process definition key like the given string.
 
从接口 org.activiti.engine.query.Query 继承的方法
asc, count, desc, list, listPage, singleResult
 

方法详细信息

deploymentId

DeploymentQuery deploymentId(String deploymentId)
Only select deployments with the given deployment id.


deploymentName

DeploymentQuery deploymentName(String name)
Only select deployments with the given name.


deploymentNameLike

DeploymentQuery deploymentNameLike(String nameLike)
Only select deployments with a name like the given string.


deploymentCategory

DeploymentQuery deploymentCategory(String category)
Only select deployments with the given category.

另请参见:
DeploymentBuilder.category(String)

deploymentCategoryNotEquals

DeploymentQuery deploymentCategoryNotEquals(String categoryNotEquals)
Only select deployments that have a different category then the given one.

另请参见:
DeploymentBuilder.category(String)

processDefinitionKey

DeploymentQuery processDefinitionKey(String key)
Only select deployments with the given process definition key.


processDefinitionKeyLike

DeploymentQuery processDefinitionKeyLike(String keyLike)
Only select deployments with a process definition key like the given string.


orderByDeploymentId

DeploymentQuery orderByDeploymentId()
Order by deployment id (needs to be followed by Query.asc() or Query.desc()).


orderByDeploymentName

DeploymentQuery orderByDeploymentName()
Order by deployment name (needs to be followed by Query.asc() or Query.desc()).


orderByDeploymenTime

DeploymentQuery orderByDeploymenTime()
Order by deployment time (needs to be followed by Query.asc() or Query.desc()).



Copyright © 2013 Alfresco. All rights reserved.