Uses of Interface
org.opensaml.storage.StorageSerializer
Packages that use StorageSerializer
Package
Description
Implementation of SAML artifact mapping.
Interfaces and classes for storing state data of the type used in replay caches, conversation identifiers, etc.
Implementation of memcached
StorageService.-
Uses of StorageSerializer in org.opensaml.saml.common.binding.artifact.impl
Classes in org.opensaml.saml.common.binding.artifact.impl that implement StorageSerializerModifier and TypeClassDescriptionclassA factory andStorageSerializerfor instances ofBasicSAMLArtifactMapEntry. -
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. -
Uses of StorageSerializer in org.opensaml.storage.impl.memcached
Methods in org.opensaml.storage.impl.memcached with parameters of type StorageSerializerModifier and TypeMethodDescription<T> booleanMemcachedStorageService.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> booleanMemcachedStorageService.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> 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.