|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface GroupQuery
Allows to programmatically query for Groups.
| Method Summary | |
|---|---|
GroupQuery |
groupId(String groupId)
Only select Groups with the given id. |
GroupQuery |
groupIdIn(String... ids)
Only select Groups with the given ids |
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 |
memberOfTenant(String tenantId)
Only select Groups that belongs to the given tenant. |
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. |
| Methods inherited from interface org.camunda.bpm.engine.query.Query |
|---|
asc, count, desc, list, listPage, singleResult |
| Method Detail |
|---|
GroupQuery groupId(String groupId)
Groups with the given id.
GroupQuery groupIdIn(String... ids)
Groups with the given ids
GroupQuery groupName(String groupName)
Groups with the given name.
GroupQuery groupNameLike(String groupNameLike)
Groups where the name matches the given parameter.
The syntax to use is that of SQL, eg. %activiti%.
GroupQuery groupType(String groupType)
Groups which have the given type.
GroupQuery groupMember(String groupMemberUserId)
Groups where the given user is a member of.
GroupQuery potentialStarter(String procDefId)
GroupS that are potential starter for the given process definition.
GroupQuery memberOfTenant(String tenantId)
Groups that belongs to the given tenant.
GroupQuery orderByGroupId()
Query.asc() or Query.desc()).
GroupQuery orderByGroupName()
Query.asc() or Query.desc()).
GroupQuery orderByGroupType()
Query.asc() or Query.desc()).
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||