| Package | Description |
|---|---|
| org.camunda.bpm.engine |
Public API of the camunda BPM engine.
Typical usage of the API starts by the creation of a ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine can be obtained.Through the services obtained from such a ProcessEngine, BPM and workflow operation
can be executed:RepositoryService:
Manages DeploymentsRuntimeService:
For starting and searching ProcessInstancesTaskService:
Exposes operations to manage human (standalone) Tasks,
such as claiming, completing and assigning tasksIdentityService:
Used for managing Users,
Groups and the relations between themManagementService:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService:
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 |
| Modifier and Type | Method and Description |
|---|---|
User |
IdentityService.newUser(String userId)
Creates a new user.
|
| Modifier and Type | Method and Description |
|---|---|
void |
IdentityService.saveUser(User user)
Saves the user.
|
| Modifier and Type | Method and Description |
|---|---|
User |
IdentityServiceImpl.newUser(String userId) |
| Modifier and Type | Method and Description |
|---|---|
List<User> |
NativeUserQueryImpl.executeList(CommandContext commandContext,
Map<String,Object> parameterMap,
int firstResult,
int maxResults) |
| Modifier and Type | Method and Description |
|---|---|
void |
IdentityServiceImpl.saveUser(User user) |
| Modifier and Type | Method and Description |
|---|---|
AuthorizationEntity[] |
DefaultAuthorizationProvider.newUser(User user) |
AuthorizationEntity[] |
ResourceAuthorizationProvider.newUser(User user)
Invoked whenever a new user is created
|
AuthorizationEntity[] |
DefaultAuthorizationProvider.tenantMembershipCreated(Tenant tenant,
User user) |
AuthorizationEntity[] |
ResourceAuthorizationProvider.tenantMembershipCreated(Tenant tenant,
User user)
Invoked whenever an user is added to a tenant.
|
| Modifier and Type | Method and Description |
|---|---|
protected User |
CreateUserCmd.executeCmd(CommandContext commandContext) |
| Constructor and Description |
|---|
SaveUserCmd(User user) |
| Modifier and Type | Method and Description |
|---|---|
User |
WritableIdentityProvider.createNewUser(String userId)
Returns a new (transient)
User object. |
User |
ReadOnlyIdentityProvider.findUserById(String userId) |
User |
WritableIdentityProvider.saveUser(User user)
Allows saving or updates a
User object |
| Modifier and Type | Method and Description |
|---|---|
User |
WritableIdentityProvider.saveUser(User user)
Allows saving or updates a
User object |
| Modifier and Type | Method and Description |
|---|---|
User |
DbIdentityServiceProvider.saveUser(User user) |
| Modifier and Type | Method and Description |
|---|---|
List<User> |
DbUserQueryImpl.executeList(CommandContext commandContext,
Page page) |
List<User> |
DbReadOnlyIdentityServiceProvider.findUserByNativeQuery(Map<String,Object> parameterMap,
int firstResult,
int maxResults) |
List<User> |
DbReadOnlyIdentityServiceProvider.findUserByQueryCriteria(DbUserQueryImpl query) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
DbIdentityServiceProvider.createDefaultTenantMembershipAuthorizations(Tenant tenant,
User user) |
User |
DbIdentityServiceProvider.saveUser(User user) |
| Modifier and Type | Class and Description |
|---|---|
class |
UserEntity |
Copyright © 2018 camunda services GmbH. All rights reserved.