Class InMemoryRegisteredClientRoleAssignmentRepository
java.lang.Object
io.jmix.authserver.roleassignment.InMemoryRegisteredClientRoleAssignmentRepository
- All Implemented Interfaces:
RegisteredClientRoleAssignmentRepository
public class InMemoryRegisteredClientRoleAssignmentRepository
extends Object
implements RegisteredClientRoleAssignmentRepository
In-memory implementation of
RegisteredClientRoleAssignmentRepository
.-
Field Summary
Modifier and TypeFieldDescriptionprotected com.google.common.collect.Multimap<String,
RegisteredClientRoleAssignment> protected com.google.common.collect.Multimap<String,
RegisteredClientRoleAssignment> -
Constructor Summary
ConstructorDescriptionInMemoryRegisteredClientRoleAssignmentRepository
(RegisteredClientRoleAssignment... roleAssignments) InMemoryRegisteredClientRoleAssignmentRepository
(Collection<RegisteredClientRoleAssignment> roleAssignments) -
Method Summary
Modifier and TypeMethodDescriptionfindByClientId
(String clientId) findByRegistrationId
(String registrationId) void
save
(RegisteredClientRoleAssignment roleAssignment)
-
Field Details
-
registrationToRoleAssignmentsMap
protected com.google.common.collect.Multimap<String,RegisteredClientRoleAssignment> registrationToRoleAssignmentsMap -
clientToRoleAssignmentsMap
protected com.google.common.collect.Multimap<String,RegisteredClientRoleAssignment> clientToRoleAssignmentsMap
-
-
Constructor Details
-
InMemoryRegisteredClientRoleAssignmentRepository
public InMemoryRegisteredClientRoleAssignmentRepository(RegisteredClientRoleAssignment... roleAssignments) -
InMemoryRegisteredClientRoleAssignmentRepository
public InMemoryRegisteredClientRoleAssignmentRepository(Collection<RegisteredClientRoleAssignment> roleAssignments)
-
-
Method Details
-
save
- Specified by:
save
in interfaceRegisteredClientRoleAssignmentRepository
-
findByClientId
- Specified by:
findByClientId
in interfaceRegisteredClientRoleAssignmentRepository
-
findByRegistrationId
- Specified by:
findByRegistrationId
in interfaceRegisteredClientRoleAssignmentRepository
-