Uses of Interface
org.camunda.bpm.engine.identity.Group
-
Packages that use Group Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s and the relations between them
ManagementService
: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService
: Exposes information about ongoing and past process instances.
FormService
: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.cfg.auth org.camunda.bpm.engine.impl.cmd org.camunda.bpm.engine.impl.identity org.camunda.bpm.engine.impl.identity.db org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.rest.dto.identity org.camunda.bpm.engine.rest.hal.group org.camunda.bpm.engine.rest.impl org.camunda.bpm.engine.rest.sub.identity.impl org.camunda.bpm.identity.impl.ldap -
-
Uses of Group in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return Group Modifier and Type Method Description Group
IdentityService. newGroup(String groupId)
Creates a new group.Methods in org.camunda.bpm.engine with parameters of type Group Modifier and Type Method Description void
IdentityService. saveGroup(Group group)
Saves the group. -
Uses of Group in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return Group Modifier and Type Method Description Group
IdentityServiceImpl. newGroup(String groupId)
Methods in org.camunda.bpm.engine.impl with parameters of type Group Modifier and Type Method Description void
IdentityServiceImpl. saveGroup(Group group)
-
Uses of Group in org.camunda.bpm.engine.impl.cfg.auth
Methods in org.camunda.bpm.engine.impl.cfg.auth with parameters of type Group Modifier and Type Method Description AuthorizationEntity[]
DefaultAuthorizationProvider. newGroup(Group group)
AuthorizationEntity[]
ResourceAuthorizationProvider. newGroup(Group group)
Invoked whenever a new group is createdAuthorizationEntity[]
DefaultAuthorizationProvider. tenantMembershipCreated(Tenant tenant, Group group)
AuthorizationEntity[]
ResourceAuthorizationProvider. tenantMembershipCreated(Tenant tenant, Group group)
Invoked whenever a group is added to a tenant. -
Uses of Group in org.camunda.bpm.engine.impl.cmd
Fields in org.camunda.bpm.engine.impl.cmd declared as Group Modifier and Type Field Description protected Group
SaveGroupCmd. group
Methods in org.camunda.bpm.engine.impl.cmd that return Group Modifier and Type Method Description protected Group
CreateGroupCmd. executeCmd(CommandContext commandContext)
Constructors in org.camunda.bpm.engine.impl.cmd with parameters of type Group Constructor Description SaveGroupCmd(Group group)
-
Uses of Group in org.camunda.bpm.engine.impl.identity
Methods in org.camunda.bpm.engine.impl.identity that return Group Modifier and Type Method Description Group
WritableIdentityProvider. createNewGroup(String groupId)
Returns a new (transient)Group
object.Group
ReadOnlyIdentityProvider. findGroupById(String groupId)
Methods in org.camunda.bpm.engine.impl.identity with parameters of type Group Modifier and Type Method Description IdentityOperationResult
WritableIdentityProvider. saveGroup(Group group)
Allows saving aGroup
object which is not yet persistent. -
Uses of Group in org.camunda.bpm.engine.impl.identity.db
Methods in org.camunda.bpm.engine.impl.identity.db that return types with arguments of type Group Modifier and Type Method Description List<Group>
DbGroupQueryImpl. executeList(CommandContext commandContext, Page page)
List<Group>
DbReadOnlyIdentityServiceProvider. findGroupByQueryCriteria(DbGroupQueryImpl query)
Methods in org.camunda.bpm.engine.impl.identity.db with parameters of type Group Modifier and Type Method Description protected void
DbIdentityServiceProvider. createDefaultAuthorizations(Group group)
protected void
DbIdentityServiceProvider. createDefaultTenantMembershipAuthorizations(Tenant tenant, Group group)
IdentityOperationResult
DbIdentityServiceProvider. saveGroup(Group group)
-
Uses of Group in org.camunda.bpm.engine.impl.persistence.entity
Classes in org.camunda.bpm.engine.impl.persistence.entity that implement Group Modifier and Type Class Description class
GroupEntity
-
Uses of Group in org.camunda.bpm.engine.rest.dto.identity
Methods in org.camunda.bpm.engine.rest.dto.identity with parameters of type Group Modifier and Type Method Description static GroupDto
GroupDto. fromGroup(Group dbGroup)
void
GroupDto. update(Group dbGroup)
Method parameters in org.camunda.bpm.engine.rest.dto.identity with type arguments of type Group Modifier and Type Method Description static List<GroupDto>
GroupDto. fromGroupList(List<Group> dbGroupList)
-
Uses of Group in org.camunda.bpm.engine.rest.hal.group
Methods in org.camunda.bpm.engine.rest.hal.group with parameters of type Group Modifier and Type Method Description static HalGroup
HalGroup. fromGroup(Group group)
-
Uses of Group in org.camunda.bpm.engine.rest.impl
Methods in org.camunda.bpm.engine.rest.impl that return types with arguments of type Group Modifier and Type Method Description protected List<Group>
GroupRestServiceImpl. executePaginatedQuery(GroupQuery query, Integer firstResult, Integer maxResults)
-
Uses of Group in org.camunda.bpm.engine.rest.sub.identity.impl
Methods in org.camunda.bpm.engine.rest.sub.identity.impl that return Group Modifier and Type Method Description protected Group
GroupResourceImpl. findGroupObject()
-
Uses of Group in org.camunda.bpm.identity.impl.ldap
Classes in org.camunda.bpm.identity.impl.ldap that implement Group Modifier and Type Class Description class
LdapGroupEntity
Methods in org.camunda.bpm.identity.impl.ldap that return Group Modifier and Type Method Description Group
LdapIdentityProviderSession. findGroupById(String groupId)
Methods in org.camunda.bpm.identity.impl.ldap that return types with arguments of type Group Modifier and Type Method Description List<Group>
LdapGroupQuery. executeList(CommandContext commandContext, Page page)
List<Group>
LdapIdentityProviderSession. findGroupByQueryCriteria(LdapGroupQuery query)
-