| Package | Description |
|---|---|
| org.camunda.bpm.engine |
Public API of the Activiti engine.
Typical usage of the API starts by the creation of a org.activiti.engine.ProcessEngineConfiguration
(typically based on a configuration file), from which a org.activiti.engine.ProcessEngine can be obtained.Through the services obtained from such a org.activiti.engine.ProcessEngine, BPM and workflow operation
can be executed:org.activiti.engine.RepositoryService: Manages org.activiti.engine.repository.Deployments org.activiti.engine.RuntimeService: For starting and searching org.activiti.engine.runtime.ProcessInstances org.activiti.engine.TaskService: Exposes operations to manage human (standalone) org.activiti.engine.task.Tasks,
such as claiming, completing and assigning tasksorg.activiti.engine.IdentityService: Used for managing org.activiti.engine.identity.Users,
org.activiti.engine.identity.Groups and the relations between themorg.activiti.engine.ManagementService: Exposes engine admin and maintenance operations,
which have no relation to the runtime exection of business processesorg.activiti.engine.HistoryService: Exposes information about ongoing and past process instances.org.activiti.engine.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.impl | |
| org.camunda.bpm.engine.rest.sub.identity.impl | |
| org.camunda.bpm.identity.impl.ldap |
| 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 |
|---|---|
void |
IdentityServiceImpl.saveUser(User user) |
| Modifier and Type | Method and Description |
|---|---|
AuthorizationEntity[] |
ResourceAuthorizationProvider.newUser(User user)
Invoked whenever a new user is created
|
AuthorizationEntity[] |
DefaultAuthorizationProvider.newUser(User user) |
| 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.findUserByQueryCriteria(DbUserQueryImpl query) |
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
DbReadOnlyIdentityServiceProvider.matchPassword(String password,
User user) |
User |
DbIdentityServiceProvider.saveUser(User user) |
| Modifier and Type | Class and Description |
|---|---|
class |
UserEntity |
| Modifier and Type | Method and Description |
|---|---|
List<User> |
ProcessDefinitionManager.findProcessDefinitionPotentialStarterUsers() |
| Modifier and Type | Method and Description |
|---|---|
static UserProfileDto |
UserProfileDto.fromUser(User user) |
static UserCredentialsDto |
UserCredentialsDto.fromUser(User user) |
static UserDto |
UserDto.fromUser(User user,
boolean isIncludeCredentials) |
void |
UserProfileDto.update(User dbUser) |
| Modifier and Type | Method and Description |
|---|---|
static List<UserProfileDto> |
UserProfileDto.fromUserList(List<User> sourceList) |
| Modifier and Type | Method and Description |
|---|---|
protected List<User> |
UserRestServiceImpl.executePaginatedQuery(UserQuery query,
Integer firstResult,
Integer maxResults) |
| Modifier and Type | Method and Description |
|---|---|
protected User |
UserResourceImpl.findUserObject() |
| Modifier and Type | Class and Description |
|---|---|
class |
LdapUserEntity |
| Modifier and Type | Method and Description |
|---|---|
User |
LdapIdentityProviderSession.findUserById(String userId) |
| Modifier and Type | Method and Description |
|---|---|
List<User> |
LdapUserQueryImpl.executeList(CommandContext commandContext,
Page page) |
List<User> |
LdapIdentityProviderSession.findUserByQueryCriteria(LdapUserQueryImpl query) |
protected List<User> |
LdapIdentityProviderSession.findUsersByGroupId(LdapUserQueryImpl query) |
List<User> |
LdapIdentityProviderSession.findUsersWithoutGroupId(LdapUserQueryImpl query,
String userBaseDn) |
Copyright © 2015. All rights reserved.