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 Deployment sRuntimeService :
For starting and searching ProcessInstance sTaskService :
Exposes operations to manage human (standalone) Task s,
such as claiming, completing and assigning tasksIdentityService :
Used for managing User s,
Group s 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 | |
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.