Package io.camunda.client.api.command
Interface CreateUserCommandStep1
- All Superinterfaces:
FinalCommandStep<CreateUserResponse>
- All Known Implementing Classes:
CreateUserCommandImpl
-
Method Summary
Modifier and TypeMethodDescriptionSet the email to create user with.Set the name to create user with.Set the password to create user with.Set the username to create user with.Methods inherited from interface io.camunda.client.api.command.FinalCommandStep
requestTimeout, send
-
Method Details
-
username
Set the username to create user with.- Parameters:
username- the username value- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
email
Set the email to create user with.- Parameters:
email- the email value- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
name
Set the name to create user with.- Parameters:
name- the name value- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-
password
Set the password to create user with.- Parameters:
password- the password value- Returns:
- the builder for this command. Call
FinalCommandStep.send()to complete the command and send it to the broker.
-