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 | Method and Description |
---|---|
protected boolean |
AbstractMapBackedStorageService.deleteImpl(Long version,
String context,
String key)
Internal method to implement delete functions.
|
boolean |
StorageService.deleteWithVersion(long version,
Object value)
Deletes an existing record from the store, using an annotated object as the source, if it
currently has a specified version.
|
boolean |
AbstractStorageService.deleteWithVersion(long version,
Object value)
Deletes an existing record from the store, using an annotated object as the source, if it
currently has a specified version.
|
boolean |
AbstractMapBackedStorageService.deleteWithVersion(long version,
String context,
String key)
Deletes an existing record from the store if it currently has a specified version.
|
boolean |
StorageService.deleteWithVersion(long version,
String context,
String key)
Deletes an existing record from the store if it currently has a specified version.
|
protected Long |
AbstractMapBackedStorageService.updateImpl(Long version,
String context,
String key,
String value,
Long expiration)
Internal method to implement update functions.
|
Long |
StorageService.updateWithVersion(long version,
Object value)
Updates an existing record in the store, if a version matches, using an annotated object as the source.
|
Long |
AbstractStorageService.updateWithVersion(long version,
Object value)
Updates an existing record in the store, if a version matches, using an annotated object as the source.
|
Long |
StorageService.updateWithVersion(long version,
String context,
String key,
Object value,
StorageSerializer serializer,
Long expiration)
Updates an existing record in the store, if a version matches, using a custom serialization strategy.
|
Long |
AbstractStorageService.updateWithVersion(long version,
String context,
String key,
Object value,
StorageSerializer serializer,
Long expiration)
Updates an existing record in the store, if a version matches, using a custom serialization strategy.
|
Long |
AbstractMapBackedStorageService.updateWithVersion(long version,
String context,
String key,
String value,
Long expiration)
Updates an existing record in the store, if a version matches.
|
Long |
StorageService.updateWithVersion(long version,
String context,
String key,
String value,
Long expiration)
Updates an existing record in the store, if a version matches.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
JPAStorageService.deleteImpl(Long version,
String context,
String key)
Deletes the record matching the supplied parameters.
|
protected boolean |
ServletRequestScopedStorageService.deleteImpl(Long version,
String context,
String key)
Internal method to implement delete functions.
|
boolean |
LDAPStorageService.deleteWithVersion(long version,
String context,
String key)
Deletes an existing record from the store if it currently has a specified version.
|
boolean |
JPAStorageService.deleteWithVersion(long version,
String context,
String key)
Deletes an existing record from the store if it currently has a specified version.
|
protected Long |
JPAStorageService.updateImpl(Long version,
String context,
String key,
String value,
Long expiration)
Updates the record matching the supplied parameters.
|
protected Long |
ServletRequestScopedStorageService.updateImpl(Long version,
String context,
String key,
String value,
Long expiration)
Internal method to implement update functions.
|
Long |
LDAPStorageService.updateWithVersion(long version,
String context,
String key,
String value,
Long expiration)
Updates an existing record in the store, if a version matches.
|
Long |
JPAStorageService.updateWithVersion(long version,
String context,
String key,
String value,
Long expiration)
Updates an existing record in the store, if a version matches.
|
Modifier and Type | Method and Description |
---|---|
boolean |
MemcachedStorageService.deleteWithVersion(long version,
Object value) |
boolean |
MemcachedStorageService.deleteWithVersion(long version,
String context,
String key) |
Long |
MemcachedStorageService.updateWithVersion(long version,
Object value) |
Long |
MemcachedStorageService.updateWithVersion(long version,
String context,
String key,
Object value,
StorageSerializer serializer,
Long expiration) |
Long |
MemcachedStorageService.updateWithVersion(long version,
String context,
String key,
String value,
Long expiration) |
Copyright © 2018. All rights reserved.