Uses of Interface
edu.uiuc.ncsa.security.core.Store
-
Packages that use Store Package Description edu.uiuc.ncsa.sas SAS = Subject-action service.edu.uiuc.ncsa.sas.admin edu.uiuc.ncsa.sas.storage edu.uiuc.ncsa.security.core.cache edu.uiuc.ncsa.security.storage edu.uiuc.ncsa.security.storage.cli Things relating to the CLI (Command line interface).edu.uiuc.ncsa.security.storage.monitored Utilities and classes for working with objects that are sent to/retrieved from aStore.edu.uiuc.ncsa.security.storage.sql Classes that setup a specific type of correspondence between java objects and rows of an SQL table.edu.uiuc.ncsa.security.util.json Some utilities for working with JSON. -
-
Uses of Store in edu.uiuc.ncsa.sas
Methods in edu.uiuc.ncsa.sas that return Store Modifier and Type Method Description Store<? extends SASClient>SASEnvironment. getClientStore()Methods in edu.uiuc.ncsa.sas with parameters of type Store Modifier and Type Method Description voidSASEnvironment. setClientStore(Store<? extends SASClient> clientStore)Constructors in edu.uiuc.ncsa.sas with parameters of type Store Constructor Description SASEnvironment(MyLoggingFacade myLogger, Store<? extends SASClient> clientStore, ActionDeserializer actionDeserializer, ResponseSerializer responseSerializer, List<String> accessList) -
Uses of Store in edu.uiuc.ncsa.sas.admin
Constructors in edu.uiuc.ncsa.sas.admin with parameters of type Store Constructor Description SASCommands(MyLoggingFacade logger, Store store) -
Uses of Store in edu.uiuc.ncsa.sas.storage
Subinterfaces of Store in edu.uiuc.ncsa.sas.storage Modifier and Type Interface Description interfaceSASClientStore<V extends SASClient>Created by Jeff Gaynor
on 8/22/22 at 2:02 PMClasses in edu.uiuc.ncsa.sas.storage that implement Store Modifier and Type Class Description classClientMemoryStore<V extends SASClient>Created by Jeff Gaynor
on 8/22/22 at 2:09 PMclassFSClientStore<V extends SASClient>Created by Jeff Gaynor
on 8/22/22 at 2:10 PMclassSASSQLStore<V extends SASClient>Created by Jeff Gaynor
on 8/22/22 at 2:11 PM -
Uses of Store in edu.uiuc.ncsa.security.core.cache
Classes in edu.uiuc.ncsa.security.core.cache that implement Store Modifier and Type Class Description classCachedMapFacade<V extends Cacheable>A Facade for a map that is backed by a cache.Methods in edu.uiuc.ncsa.security.core.cache that return Store Modifier and Type Method Description StoreCleanup. getStore()Store<V>CachedMapFacade. getTheStore()Methods in edu.uiuc.ncsa.security.core.cache with parameters of type Store Modifier and Type Method Description voidCleanup. setStore(Store store)voidCachedMapFacade. setTheStore(Store<V> theStore)Constructors in edu.uiuc.ncsa.security.core.cache with parameters of type Store Constructor Description CachedMapFacade(Store<V> theStore) -
Uses of Store in edu.uiuc.ncsa.security.storage
Classes in edu.uiuc.ncsa.security.storage with type parameters of type Store Modifier and Type Class Description classAbstractUpkeepStoreProvider<T extends Store>Centralizes the upkeep facilities for a store,classAggregateStore<V extends Store>A store of stores.classMemoryStoreProvider<T extends Store>Created by Jeff Gaynor
on 2/16/24 at 3:30 PMClasses in edu.uiuc.ncsa.security.storage that implement Store Modifier and Type Class Description classAggregateStore<V extends Store>A store of stores.classFileStore<V extends Identifiable>A store backed by the file system.classIndexedStreamStore<V extends Identifiable>A high-level class for storing things to streams.classMemoryStore<V extends Identifiable>An in-memory store.Methods in edu.uiuc.ncsa.security.storage with parameters of type Store Modifier and Type Method Description static IdentifiableGenericStoreUtils. fromXML(Store store, XMLMap map)This will convert a map into an object.static voidGenericStoreUtils. fromXMLAndSave(Store store, XMLMap map)static <V extends Identifiable>
List<V>GenericStoreUtils. getMostRecent(Store<V> store, int n, List<String> attributes)static <V extends Identifiable>
List<V>GenericStoreUtils. search(Store<V> store, String key, boolean isNull)static <V extends Identifiable>
List<V>GenericStoreUtils. search(Store<V> store, String key, String condition, boolean isRegEx, List<String> attr)static <V extends Identifiable>
List<V>GenericStoreUtils. search(Store<V> store, String key, String condition, boolean isRegEx, List<String> attr, String dateField, Date before, Date after)static XMLMapGenericStoreUtils. toXML(Store store, Identifiable identifiable)Convert an identifiable object to anXMLMap.static <V extends Identifiable>
voidGenericStoreUtils. update(Store<V> store, List<Identifier> ids, Map<String,Object> values)Generic implementation ofupdate(List, Map)and will loop through the elements doing the update one at a time.Method parameters in edu.uiuc.ncsa.security.storage with type arguments of type Store Modifier and Type Method Description voidAggregateStoreProvider. addProvider(javax.inject.Provider<? extends Store> x)Constructors in edu.uiuc.ncsa.security.storage with parameters of type Store Constructor Description AggregateStore(V... stores) -
Uses of Store in edu.uiuc.ncsa.security.storage.cli
Methods in edu.uiuc.ncsa.security.storage.cli that return Store Modifier and Type Method Description StoreStoreArchiver. getStore()StoreStoreCommands. getStore()StoreStoreCommands2. getStore()Methods in edu.uiuc.ncsa.security.storage.cli with parameters of type Store Modifier and Type Method Description protected FoundIdentifiablesStoreCommands. findByIDOrRS(Store store, String name)This will find an object in the given store assuming the name is an identifier.protected FoundIdentifiablesStoreCommands2. findByIDOrRS(Store store, String name)This will find an object in the given store assuming the name is an identifier.protected FoundIdentifiablesStoreCommands. findItem(Store store, InputLine inputLine, boolean allowResultSets)General case for finding items from a store.protected FoundIdentifiablesStoreCommands2. findItem(Store store, InputLine inputLine, boolean allowResultSets)General case for finding items from a store.voidStoreCommands. setStore(Store store)voidStoreCommands2. setStore(Store store)Constructors in edu.uiuc.ncsa.security.storage.cli with parameters of type Store Constructor Description StoreArchiver(Store store)StoreCommands(MyLoggingFacade logger, Store store)StoreCommands(MyLoggingFacade logger, String defaultIndent, Store store)Constructor that sets the indent level for this command processor.StoreCommands2(CLIDriver driver, Store store)StoreCommands2(CLIDriver driver, String defaultIndent, Store store)Constructor that sets the indent level for this command processor. -
Uses of Store in edu.uiuc.ncsa.security.storage.monitored
Classes in edu.uiuc.ncsa.security.storage.monitored that implement Store Modifier and Type Class Description classMonitoredFileStore<V extends Identifiable>Created by Jeff Gaynor
on 3/29/23 at 10:00 AMclassMonitoredMemoryStore<V extends Identifiable>Created by Jeff Gaynor
on 3/29/23 at 12:43 PMclassMonitoredSQLStore<V extends Identifiable>Created by Jeff Gaynor
on 3/29/23 at 10:24 AM -
Uses of Store in edu.uiuc.ncsa.security.storage.sql
Classes in edu.uiuc.ncsa.security.storage.sql with type parameters of type Store Modifier and Type Class Description classSQLStoreProvider<T extends Store>For creating SQL-based storesClasses in edu.uiuc.ncsa.security.storage.sql that implement Store Modifier and Type Class Description classSQLStore<V extends Identifiable>Top-level SQL store object. -
Uses of Store in edu.uiuc.ncsa.security.util.json
Subinterfaces of Store in edu.uiuc.ncsa.security.util.json Modifier and Type Interface Description interfaceJSONStore<V extends JSONEntry>Created by Jeff Gaynor
on 2/15/19 at 4:12 PMClasses in edu.uiuc.ncsa.security.util.json that implement Store Modifier and Type Class Description classTestMemStore<V extends JSONEntry>This is used in various places for testing and debugging.
-