org.activiti.engine.identity
接口 GroupQuery

所有超级接口:
Query<GroupQuery,Group>
所有已知实现类:
GroupQueryImpl

public interface GroupQuery
extends Query<GroupQuery,Group>

Allows to programmatically query for Groups.

作者:
Joram Barrez

方法摘要
 GroupQuery groupId(String groupId)
          Only select Groups with the given id.
 GroupQuery groupMember(String groupMemberUserId)
          Only selects Groups where the given user is a member of.
 GroupQuery groupName(String groupName)
          Only select Groups with the given name.
 GroupQuery groupNameLike(String groupNameLike)
          Only select Groups where the name matches the given parameter.
 GroupQuery groupType(String groupType)
          Only select Groups which have the given type.
 GroupQuery orderByGroupId()
          Order by group id (needs to be followed by Query.asc() or Query.desc()).
 GroupQuery orderByGroupName()
          Order by group name (needs to be followed by Query.asc() or Query.desc()).
 GroupQuery orderByGroupType()
          Order by group type (needs to be followed by Query.asc() or Query.desc()).
 GroupQuery potentialStarter(String procDefId)
          Only select GroupS that are potential starter for the given process definition.
 
从接口 org.activiti.engine.query.Query 继承的方法
asc, count, desc, list, listPage, singleResult
 

方法详细信息

groupId

GroupQuery groupId(String groupId)
Only select Groups with the given id.


groupName

GroupQuery groupName(String groupName)
Only select Groups with the given name.


groupNameLike

GroupQuery groupNameLike(String groupNameLike)
Only select Groups where the name matches the given parameter. The syntax to use is that of SQL, eg. %activiti%.


groupType

GroupQuery groupType(String groupType)
Only select Groups which have the given type.


groupMember

GroupQuery groupMember(String groupMemberUserId)
Only selects Groups where the given user is a member of.


potentialStarter

GroupQuery potentialStarter(String procDefId)
Only select GroupS that are potential starter for the given process definition.


orderByGroupId

GroupQuery orderByGroupId()
Order by group id (needs to be followed by Query.asc() or Query.desc()).


orderByGroupName

GroupQuery orderByGroupName()
Order by group name (needs to be followed by Query.asc() or Query.desc()).


orderByGroupType

GroupQuery orderByGroupType()
Order by group type (needs to be followed by Query.asc() or Query.desc()).



Copyright © 2013 Alfresco. All rights reserved.