Uses of Class
org.opensaml.storage.VersionMismatchException
Packages that use VersionMismatchException
Package
Description
Interfaces and classes for storing state data of the type used in replay caches, conversation identifiers, etc.
-
Uses of VersionMismatchException in org.opensaml.storage
Methods in org.opensaml.storage that throw VersionMismatchExceptionModifier and TypeMethodDescriptionprotected 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.AbstractMapBackedStorageService.updateWithVersion(long version, String context, String key, String value, Long expiration) Updates an existing record in the store, if a version matches.AbstractStorageService.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.StorageService.updateWithVersion(long version, Object value) Updates an existing record in the store, if a version matches, using an annotated object as the source.StorageService.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.