Uses of Interface
org.opensaml.storage.StorageSerializer
Packages that use StorageSerializer
Package
Description
Interfaces and classes for storing state data of the type used in replay caches, conversation identifiers, etc.
-
Uses of StorageSerializer in org.opensaml.storage
Methods in org.opensaml.storage with parameters of type StorageSerializerModifier and TypeMethodDescription<T> booleanAbstractStorageService.create(String context, String key, T value, StorageSerializer<T> serializer, Long expiration) Creates a new record in the store with an expiration, using a custom serialization process for an arbitrary object.<T> booleanStorageService.create(String context, String key, T value, StorageSerializer<T> serializer, Long expiration) Creates a new record in the store with an expiration, using a custom serialization process for an arbitrary object.StorageRecord.getValue(StorageSerializer<Type> serializer, String context, String key) Get the record value, using a custom deserialization process.protected voidStorageRecord.setValue(Type instance, StorageSerializer<Type> serializer) Set the record value, using a custom serialization process.<T> booleanAbstractStorageService.update(String context, String key, T value, StorageSerializer<T> serializer, Long expiration) Updates an existing record in the store using a custom serialization strategy.<T> booleanStorageService.update(String context, String key, T value, StorageSerializer<T> serializer, Long expiration) Updates an existing record in the store using a custom serialization strategy.<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.<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.