Uses of Interface
org.camunda.bpm.engine.identity.User
Packages that use User
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
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.classes related to the
IdentityService
.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of User in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return UserModifier and TypeMethodDescriptionCreates a new user.Methods in org.camunda.bpm.engine with parameters of type UserModifier and TypeMethodDescriptionIdentityService.checkPasswordAgainstPolicy
(String candidatePassword, User user) Check a given password against the configuredPasswordPolicy
.IdentityService.checkPasswordAgainstPolicy
(PasswordPolicy policy, String candidatePassword, User user) Check a given password against a givenPasswordPolicy
.void
Saves the user. -
Uses of User in org.camunda.bpm.engine.identity
Methods in org.camunda.bpm.engine.identity with parameters of type User -
Uses of User in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return UserMethods in org.camunda.bpm.engine.impl that return types with arguments of type UserModifier and TypeMethodDescriptionNativeUserQueryImpl.executeList
(CommandContext commandContext, Map<String, Object> parameterMap, int firstResult, int maxResults) Methods in org.camunda.bpm.engine.impl with parameters of type UserModifier and TypeMethodDescriptionIdentityServiceImpl.checkPasswordAgainstPolicy
(String candidatePassword, User user) IdentityServiceImpl.checkPasswordAgainstPolicy
(PasswordPolicy policy, String candidatePassword, User user) void
void
-
Uses of User in org.camunda.bpm.engine.impl.cfg.auth
Methods in org.camunda.bpm.engine.impl.cfg.auth with parameters of type UserModifier and TypeMethodDescriptionInvoked whenever a new user is createdDefaultAuthorizationProvider.tenantMembershipCreated
(Tenant tenant, User user) ResourceAuthorizationProvider.tenantMembershipCreated
(Tenant tenant, User user) Invoked whenever an user is added to a tenant. -
Uses of User in org.camunda.bpm.engine.impl.cmd
Fields in org.camunda.bpm.engine.impl.cmd declared as UserMethods in org.camunda.bpm.engine.impl.cmd that return UserModifier and TypeMethodDescriptionprotected User
CreateUserCmd.executeCmd
(CommandContext commandContext) Constructors in org.camunda.bpm.engine.impl.cmd with parameters of type UserModifierConstructorDescriptionSaveUserCmd
(User user) SaveUserCmd
(User user, boolean skipPasswordPolicy) -
Uses of User in org.camunda.bpm.engine.impl.identity
Methods in org.camunda.bpm.engine.impl.identity that return UserModifier and TypeMethodDescriptionWritableIdentityProvider.createNewUser
(String userId) Returns a new (transient)User
object.ReadOnlyIdentityProvider.findUserById
(String userId) Methods in org.camunda.bpm.engine.impl.identity with parameters of type User -
Uses of User in org.camunda.bpm.engine.impl.identity.db
Methods in org.camunda.bpm.engine.impl.identity.db that return types with arguments of type UserModifier and TypeMethodDescriptionDbUserQueryImpl.executeList
(CommandContext commandContext, Page page) DbReadOnlyIdentityServiceProvider.findUserByNativeQuery
(Map<String, Object> parameterMap, int firstResult, int maxResults) DbReadOnlyIdentityServiceProvider.findUserByQueryCriteria
(DbUserQueryImpl query) Methods in org.camunda.bpm.engine.impl.identity.db with parameters of type UserModifier and TypeMethodDescriptionprotected void
DbIdentityServiceProvider.createDefaultTenantMembershipAuthorizations
(Tenant tenant, User user) -
Uses of User in org.camunda.bpm.engine.impl.persistence.entity
Classes in org.camunda.bpm.engine.impl.persistence.entity that implement User