Uses of Class
org.opensaml.storage.StorageRecord
-
Packages that use StorageRecord Package Description org.opensaml.storage Interfaces and classes for storing state data of the type used in replay caches, conversation identifiers, etc.org.opensaml.storage.impl Storage-related implementation classes.org.opensaml.storage.impl.memcached Implementation of memcachedStorageService. -
-
Uses of StorageRecord in org.opensaml.storage
Subclasses of StorageRecord in org.opensaml.storage Modifier and Type Class Description classMutableStorageRecord<T>Exposes mutation ofStorageRecordproperties.Methods in org.opensaml.storage that return StorageRecord Modifier and Type Method Description <T> StorageRecord<T>AbstractMapBackedStorageService. read(String context, String key)Returns an existing record from the store, if one exists.<T> StorageRecord<T>StorageService. read(String context, String key)Returns an existing record from the store, if one exists.Methods in org.opensaml.storage that return types with arguments of type StorageRecord Modifier and Type Method Description <T> Pair<Long,StorageRecord<T>>AbstractMapBackedStorageService. read(String context, String key, long version)Returns an existing record from the store, along with its version.<T> Pair<Long,StorageRecord<T>>StorageService. read(String context, String key, long version)Returns an existing record from the store, along with its version.protected <T> Pair<Long,StorageRecord<T>>AbstractMapBackedStorageService. readImpl(String context, String key, Long version)Internal method to implement read functions. -
Uses of StorageRecord in org.opensaml.storage.impl
Subclasses of StorageRecord in org.opensaml.storage.impl Modifier and Type Class Description classJPAStorageRecord<T>Implementation ofMutableStorageRecordannotated for JPA.Methods in org.opensaml.storage.impl that return StorageRecord Modifier and Type Method Description <T> StorageRecord<T>JPAStorageService. read(String context, String key)Returns an existing record from the store, if one exists.<T> StorageRecord<T>LDAPStorageService. read(String context, String key)Returns an existing record from the store, if one exists.Methods in org.opensaml.storage.impl that return types with arguments of type StorageRecord Modifier and Type Method Description <T> Pair<Long,StorageRecord<T>>JPAStorageService. read(String context, String key, long version)Returns an existing record from the store, along with its version.<T> Pair<Long,StorageRecord<T>>LDAPStorageService. read(String context, String key, long version)Returns an existing record from the store, along with its version.protected <T> Pair<Long,StorageRecord<T>>JPAStorageService. readImpl(String context, String key, Long version)Reads the record matching the supplied parameters. -
Uses of StorageRecord in org.opensaml.storage.impl.memcached
Subclasses of StorageRecord in org.opensaml.storage.impl.memcached Modifier and Type Class Description classMemcachedStorageRecord<T>Storage record implementation for use withMemcachedStorageService.Methods in org.opensaml.storage.impl.memcached that return StorageRecord Modifier and Type Method Description <T> StorageRecord<T>MemcachedStorageService. read(String context, String key)Returns an existing record from the store, if one exists.Methods in org.opensaml.storage.impl.memcached that return types with arguments of type StorageRecord Modifier and Type Method Description <T> Pair<Long,StorageRecord<T>>MemcachedStorageService. read(String context, String key, long version)Returns an existing record from the store, along with its version.
-