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.authSessionConstructors in org.keycloak.models.map.authSession with parameters of type MapStorage Constructor Description MapRootAuthenticationSessionProvider(KeycloakSession session, MapStorage<MapRootAuthenticationSessionEntity,RootAuthenticationSessionModel> sessionStore, int authSessionsLimit)
- 
Uses of MapStorage in org.keycloak.models.map.clientConstructors 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.clientscopeConstructors 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.commonMethods in org.keycloak.models.map.common that return MapStorage Modifier and Type Method Description MapStorage<V,M>AbstractMapProviderFactory. getStorage(KeycloakSession session)
- 
Uses of MapStorage in org.keycloak.models.map.eventsConstructors in org.keycloak.models.map.events with parameters of type MapStorage Constructor Description MapEventStoreProvider(KeycloakSession session, MapStorage<MapAuthEventEntity,Event> loginEventsStore, MapStorage<MapAdminEventEntity,AdminEvent> adminEventsStore)
- 
Uses of MapStorage in org.keycloak.models.map.groupConstructors 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.loginFailureConstructors 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.realmConstructors 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.roleConstructors 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.singleUseObjectConstructors in org.keycloak.models.map.singleUseObject with parameters of type MapStorage Constructor Description MapSingleUseObjectProvider(KeycloakSession session, MapStorage<MapSingleUseObjectEntity,SingleUseObjectValueModel> storage)
- 
Uses of MapStorage in org.keycloak.models.map.storageSubinterfaces of MapStorage in org.keycloak.models.map.storage Modifier and Type Interface Description interfaceMapStorageWithAuth<V extends AbstractEntity & UpdatableEntity,M>Implementing this interface signals that the store can validate credentials.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.chmClasses 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)).classSingleUseObjectConcurrentHashMapStorage<K,V extends AbstractEntity,M>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.fileClasses in org.keycloak.models.map.storage.file that implement MapStorage Modifier and Type Class Description classFileMapStorage<V extends AbstractEntity & UpdatableEntity,M>A file-basedMapStorage.Methods in org.keycloak.models.map.storage.file that return MapStorage Modifier and Type Method Description <V extends AbstractEntity,M>
 MapStorage<V,M>FileMapStorageProvider. getStorage(Class<M> modelType, MapStorageProviderFactory.Flag... flags)
- 
Uses of MapStorage in org.keycloak.models.map.storage.hotRodClasses in org.keycloak.models.map.storage.hotRod that implement MapStorage Modifier and Type Class Description classHotRodMapStorage<K,E extends AbstractHotRodEntity,V extends AbstractEntity & HotRodEntityDelegate<E>,M>classSingleUseObjectHotRodMapStorageMethods 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.jpaMethods 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.ldapMethods 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.treeClasses in org.keycloak.models.map.storage.tree that implement MapStorage Modifier and Type Class Description classEmptyMapStorage<V extends AbstractEntity,M>
- 
Uses of MapStorage in org.keycloak.models.map.userConstructors 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.userSessionConstructors in org.keycloak.models.map.userSession with parameters of type MapStorage Constructor Description MapUserSessionProvider(KeycloakSession session, MapStorage<MapUserSessionEntity,UserSessionModel> userSessionStore)
 
-