Uses of Class
org.opensaml.storage.VersionMismatchException
-
Packages that use VersionMismatchException 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 VersionMismatchException in org.opensaml.storage
Methods in org.opensaml.storage that throw VersionMismatchException Modifier and Type Method Description protected booleanAbstractMapBackedStorageService. deleteImpl(Long version, String context, String key)Internal method to implement delete functions.booleanAbstractMapBackedStorageService. deleteWithVersion(long version, String context, String key)Deletes an existing record from the store if it currently has a specified version.booleanAbstractStorageService. 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.booleanStorageService. 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.booleanStorageService. deleteWithVersion(long version, String context, String key)Deletes an existing record from the store if it currently has a specified version.protected LongAbstractMapBackedStorageService. updateImpl(Long version, String context, String key, String value, Long expiration)Internal method to implement update functions.LongAbstractMapBackedStorageService. updateWithVersion(long version, String context, String key, String value, Long expiration)Updates an existing record in the store, if a version matches.LongAbstractStorageService. updateWithVersion(long version, Object value)Updates an existing record in the store, if a version matches, using an annotated object as the source.<T> LongAbstractStorageService. updateWithVersion(long version, String context, String key, T value, StorageSerializer<T> serializer, Long expiration)Updates an existing record in the store, if a version matches, using a custom serialization strategy.LongStorageService. updateWithVersion(long version, Object value)Updates an existing record in the store, if a version matches, using an annotated object as the source.LongStorageService. updateWithVersion(long version, String context, String key, String value, Long expiration)Updates an existing record in the store, if a version matches.<T> LongStorageService. updateWithVersion(long version, String context, String key, T value, StorageSerializer<T> serializer, Long expiration)Updates an existing record in the store, if a version matches, using a custom serialization strategy. -
Uses of VersionMismatchException in org.opensaml.storage.impl
Methods in org.opensaml.storage.impl that throw VersionMismatchException Modifier and Type Method Description protected booleanJPAStorageService. deleteImpl(Long version, String context, String key)Deletes the record matching the supplied parameters.booleanJPAStorageService. deleteWithVersion(long version, String context, String key)Deletes an existing record from the store if it currently has a specified version.booleanLDAPStorageService. deleteWithVersion(long version, String context, String key)Deletes an existing record from the store if it currently has a specified version.protected LongJPAStorageService. updateImpl(Long version, String context, String key, String value, Long expiration)Updates the record matching the supplied parameters.LongJPAStorageService. updateWithVersion(long version, String context, String key, String value, Long expiration)Updates an existing record in the store, if a version matches.LongLDAPStorageService. updateWithVersion(long version, String context, String key, String value, Long expiration)Updates an existing record in the store, if a version matches. -
Uses of VersionMismatchException in org.opensaml.storage.impl.memcached
Methods in org.opensaml.storage.impl.memcached that throw VersionMismatchException Modifier and Type Method Description booleanMemcachedStorageService. 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.booleanMemcachedStorageService. deleteWithVersion(long version, String context, String key)Deletes an existing record from the store if it currently has a specified version.LongMemcachedStorageService. updateWithVersion(long version, Object value)Updates an existing record in the store, if a version matches, using an annotated object as the source.LongMemcachedStorageService. updateWithVersion(long version, String context, String key, String value, Long expiration)Updates an existing record in the store, if a version matches.<T> LongMemcachedStorageService. updateWithVersion(long version, String context, String key, T value, StorageSerializer<T> serializer, Long expiration)Updates an existing record in the store, if a version matches, using a custom serialization strategy.
-