Uses of Interface
org.keycloak.models.map.storage.MapStorage
-
-
Uses of MapStorage in org.keycloak.models.map.authorization
-
Uses of MapStorage in org.keycloak.models.map.authSession
Constructors in org.keycloak.models.map.authSession with parameters of type MapStorage Constructor Description MapRootAuthenticationSessionProvider(KeycloakSession session, MapStorage<MapRootAuthenticationSessionEntity,RootAuthenticationSessionModel> sessionStore) -
Uses of MapStorage in org.keycloak.models.map.client
Constructors in org.keycloak.models.map.client with parameters of type MapStorage Constructor Description MapClientProvider(KeycloakSession session, MapStorage<MapClientEntity,ClientModel> clientStore, ConcurrentMap<String,ConcurrentMap<String,Integer>> clientRegisteredNodesStore) -
Uses of MapStorage in org.keycloak.models.map.clientscope
Constructors in org.keycloak.models.map.clientscope with parameters of type MapStorage Constructor Description MapClientScopeProvider(KeycloakSession session, MapStorage<MapClientScopeEntity,ClientScopeModel> clientScopeStore) -
Uses of MapStorage in org.keycloak.models.map.common
Methods in org.keycloak.models.map.common that return MapStorage Modifier and Type Method Description protected MapStorage<V,M>AbstractMapProviderFactory. getStorage(KeycloakSession session) -
Uses of MapStorage in org.keycloak.models.map.group
Constructors in org.keycloak.models.map.group with parameters of type MapStorage Constructor Description MapGroupProvider(KeycloakSession session, MapStorage<MapGroupEntity,GroupModel> groupStore) -
Uses of MapStorage in org.keycloak.models.map.loginFailure
Constructors in org.keycloak.models.map.loginFailure with parameters of type MapStorage Constructor Description MapUserLoginFailureProvider(KeycloakSession session, MapStorage<MapUserLoginFailureEntity,UserLoginFailureModel> userLoginFailureStore) -
Uses of MapStorage in org.keycloak.models.map.realm
Constructors in org.keycloak.models.map.realm with parameters of type MapStorage Constructor Description MapRealmProvider(KeycloakSession session, MapStorage<MapRealmEntity,RealmModel> realmStore) -
Uses of MapStorage in org.keycloak.models.map.role
Constructors in org.keycloak.models.map.role with parameters of type MapStorage Constructor Description MapRoleProvider(KeycloakSession session, MapStorage<MapRoleEntity,RoleModel> roleStore) -
Uses of MapStorage in org.keycloak.models.map.storage
Methods in org.keycloak.models.map.storage that return MapStorage Modifier and Type Method Description <V extends AbstractEntity,M>
MapStorage<V,M>MapStorageProvider. getStorage(Class<M> modelType, MapStorageProviderFactory.Flag... flags)Returns a key-value storage implementation for the given types. -
Uses of MapStorage in org.keycloak.models.map.storage.chm
Classes in org.keycloak.models.map.storage.chm that implement MapStorage Modifier and Type Class Description classConcurrentHashMapStorage<K,V extends AbstractEntity & UpdatableEntity,M>It contains basic object CRUD operations as well as bulkConcurrentHashMapStorage.read(org.keycloak.models.map.storage.QueryParameters)and bulkConcurrentHashMapStorage.delete(org.keycloak.models.map.storage.QueryParameters)operations, and operation for determining the number of the objects satisfying given criteria (ConcurrentHashMapStorage.getCount(org.keycloak.models.map.storage.QueryParameters)).classUserSessionConcurrentHashMapStorage<K>User session storage with a naive implementation of referential integrity in client to user session relation, restricted to ON DELETE CASCADE functionality.Methods in org.keycloak.models.map.storage.chm that return MapStorage Modifier and Type Method Description <V extends AbstractEntity,M>
MapStorage<V,M>ConcurrentHashMapStorageProvider. getStorage(Class<M> modelType, MapStorageProviderFactory.Flag... flags) -
Uses of MapStorage in org.keycloak.models.map.user
Constructors in org.keycloak.models.map.user with parameters of type MapStorage Constructor Description MapUserProvider(KeycloakSession session, MapStorage<MapUserEntity,UserModel> store) -
Uses of MapStorage in org.keycloak.models.map.userSession
Constructors in org.keycloak.models.map.userSession with parameters of type MapStorage Constructor Description MapUserSessionProvider(KeycloakSession session, MapStorage<MapUserSessionEntity,UserSessionModel> userSessionStore, MapStorage<MapAuthenticatedClientSessionEntity,AuthenticatedClientSessionModel> clientSessionStore)
-