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,Long>> 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 class
ConcurrentHashMapStorage<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)
).class
UserSessionConcurrentHashMapStorage<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.storage.hotRod
Classes in org.keycloak.models.map.storage.hotRod that implement MapStorage Modifier and Type Class Description class
HotRodMapStorage<K,E extends AbstractHotRodEntity,V extends HotRodEntityDelegate<E> & AbstractEntity,M>
Methods in org.keycloak.models.map.storage.hotRod that return MapStorage Modifier and Type Method Description <V extends AbstractEntity,M>
MapStorage<V,M>HotRodMapStorageProvider. getStorage(Class<M> modelType, MapStorageProviderFactory.Flag... flags)
-
Uses of MapStorage in org.keycloak.models.map.storage.jpa
Methods in org.keycloak.models.map.storage.jpa that return MapStorage Modifier and Type Method Description <V extends AbstractEntity,M>
MapStorage<V,M>JpaMapStorageProvider. getStorage(Class<M> modelType, MapStorageProviderFactory.Flag... flags)
-
Uses of MapStorage in org.keycloak.models.map.storage.ldap
Methods in org.keycloak.models.map.storage.ldap that return MapStorage Modifier and Type Method Description <V extends AbstractEntity,M>
MapStorage<V,M>LdapMapStorageProvider. getStorage(Class<M> modelType, MapStorageProviderFactory.Flag... flags)
-
Uses of MapStorage in org.keycloak.models.map.storage.tree
Classes in org.keycloak.models.map.storage.tree that implement MapStorage Modifier and Type Class Description class
EmptyMapStorage<V extends AbstractEntity,M>
-
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)
-