| 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 |
| Modifier and Type | Class and Description |
|---|---|
class |
MutableStorageRecord
Exposes mutation of
StorageRecord properties. |
| Modifier and Type | Method and Description |
|---|---|
StorageRecord |
AbstractMapBackedStorageService.read(java.lang.String context,
java.lang.String key)
Returns an existing record from the store, if one exists.
|
StorageRecord |
StorageService.read(java.lang.String context,
java.lang.String key)
Returns an existing record from the store, if one exists.
|
| Modifier and Type | Method and Description |
|---|---|
net.shibboleth.utilities.java.support.collection.Pair<java.lang.Long,StorageRecord> |
AbstractMapBackedStorageService.read(java.lang.String context,
java.lang.String key,
long version)
Returns an existing record from the store, along with its version.
|
net.shibboleth.utilities.java.support.collection.Pair<java.lang.Long,StorageRecord> |
StorageService.read(java.lang.String context,
java.lang.String key,
long version)
Returns an existing record from the store, along with its version.
|
protected net.shibboleth.utilities.java.support.collection.Pair<java.lang.Long,StorageRecord> |
AbstractMapBackedStorageService.readImpl(java.lang.String context,
java.lang.String key,
java.lang.Long version)
Internal method to implement read functions.
|
| Modifier and Type | Class and Description |
|---|---|
class |
JPAStorageRecord
Implementation of
MutableStorageRecord annotated for JPA. |
| Modifier and Type | Method and Description |
|---|---|
StorageRecord |
JPAStorageService.read(java.lang.String context,
java.lang.String key)
Returns an existing record from the store, if one exists.
|
StorageRecord |
LDAPStorageService.read(java.lang.String context,
java.lang.String key)
Returns an existing record from the store, if one exists.
|
| Modifier and Type | Method and Description |
|---|---|
net.shibboleth.utilities.java.support.collection.Pair<java.lang.Long,StorageRecord> |
JPAStorageService.read(java.lang.String context,
java.lang.String key,
long version)
Returns an existing record from the store, along with its version.
|
net.shibboleth.utilities.java.support.collection.Pair<java.lang.Long,StorageRecord> |
LDAPStorageService.read(java.lang.String context,
java.lang.String key,
long version)
Returns an existing record from the store, along with its version.
|
java.util.List<StorageRecord> |
JPAStorageService.readAll()
Returns all records from the store.
|
java.util.List<StorageRecord> |
JPAStorageService.readAll(java.lang.String context)
Returns all records from the store for the supplied context.
|
protected net.shibboleth.utilities.java.support.collection.Pair<java.lang.Long,StorageRecord> |
JPAStorageService.readImpl(java.lang.String context,
java.lang.String key,
java.lang.Long version)
Reads the record matching the supplied parameters.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MemcachedStorageRecord
Storage record implementation for use with
MemcachedStorageService. |
| Modifier and Type | Method and Description |
|---|---|
StorageRecord |
MemcachedStorageService.read(java.lang.String context,
java.lang.String key) |
| Modifier and Type | Method and Description |
|---|---|
net.shibboleth.utilities.java.support.collection.Pair<java.lang.Long,StorageRecord> |
MemcachedStorageService.read(java.lang.String context,
java.lang.String key,
long version) |