| 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 | |
| org.camunda.bpm.engine.rest.dto.identity | |
| org.camunda.bpm.engine.rest.hal.user | |
| 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 | 
|---|---|
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)  | 
void | 
IdentityServiceImpl.saveUser(User user,
        boolean skipPasswordPolicy)  | 
| 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)  | 
SaveUserCmd(User user,
           boolean skipPasswordPolicy)  | 
| Modifier and Type | Method and Description | 
|---|---|
User | 
WritableIdentityProvider.createNewUser(String userId)
Returns a new (transient)  
User object. | 
User | 
ReadOnlyIdentityProvider.findUserById(String userId)  | 
| Modifier and Type | Method and Description | 
|---|---|
IdentityOperationResult | 
WritableIdentityProvider.saveUser(User user)
Allows saving or updates a  
User object | 
| 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)  | 
IdentityOperationResult | 
DbIdentityServiceProvider.saveUser(User user)  | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
UserEntity  | 
| 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 | 
|---|---|
static HalUser | 
HalUser.fromUser(User user)  | 
| Modifier and Type | Method and Description | 
|---|---|
static HalUserList | 
HalUserList.fromUserList(List<User> users)  | 
| 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,
                       boolean ignorePagination)  | 
Copyright © 2019. All rights reserved.