Interface AssignRoleToUserCommandStep1

All Known Implementing Classes:
AssignRoleToUserCommandImpl

public interface AssignRoleToUserCommandStep1
Command to assign a role to a user.

Example usage:

 camundaClient
   .newAssignRoleToUserCommand()
   .roleId("roleId")
   .username("username")
   .send();
 

This command is only sent via REST over HTTP, not via gRPC.