Class StorageServiceSAMLArtifactMapEntryFactory
java.lang.Object
net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
org.opensaml.saml.common.binding.artifact.impl.StorageServiceSAMLArtifactMapEntryFactory
- All Implemented Interfaces:
Component
,DestructableComponent
,InitializableComponent
,SAMLArtifactMap.SAMLArtifactMapEntryFactory
,StorageSerializer<SAMLArtifactMap.SAMLArtifactMapEntry>
public class StorageServiceSAMLArtifactMapEntryFactory
extends AbstractInitializableComponent
implements SAMLArtifactMap.SAMLArtifactMapEntryFactory, StorageSerializer<SAMLArtifactMap.SAMLArtifactMapEntry>
A factory and
StorageSerializer
for instances of BasicSAMLArtifactMapEntry
.
This implements serialization of an entry by wrapping the XML-based message in a parent element that tracks the additional associated data.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final org.slf4j.Logger
Class logger.private ParserPool
XML parsing component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondeserialize
(long version, String context, String key, String value, Long expiration) Returns an object recovered from a string produced through theStorageSerializer.serialize(Type)
method.Gets the parser pool used to parse serialized data.newEntry
(String artifact, String issuerId, String relyingPartyId, SAMLObject samlMessage) Factory method which produces aSAMLArtifactMap.SAMLArtifactMapEntry
.Returns a string representing the input object.void
setParserPool
(ParserPool pool) Sets the parser pool used to parse serialized data.Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
destroy, doDestroy, doInitialize, initialize, isDestroyed, isInitialized
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.shibboleth.utilities.java.support.component.InitializableComponent
initialize, isInitialized
-
Field Details
-
log
@Nonnull private final org.slf4j.Logger logClass logger. -
parserPool
XML parsing component.
-
-
Constructor Details
-
StorageServiceSAMLArtifactMapEntryFactory
public StorageServiceSAMLArtifactMapEntryFactory()Constructor.
-
-
Method Details
-
getParserPool
Gets the parser pool used to parse serialized data.- Returns:
- parser pool used to parse serialized data
-
setParserPool
Sets the parser pool used to parse serialized data.- Parameters:
pool
- parser pool used to parse serialized data
-
newEntry
@Nonnull public SAMLArtifactMap.SAMLArtifactMapEntry newEntry(@Nonnull @NotEmpty String artifact, @Nonnull @NotEmpty String issuerId, @Nonnull @NotEmpty String relyingPartyId, @Nonnull SAMLObject samlMessage) Factory method which produces aSAMLArtifactMap.SAMLArtifactMapEntry
.- Specified by:
newEntry
in interfaceSAMLArtifactMap.SAMLArtifactMapEntryFactory
- Parameters:
artifact
- the artifactissuerId
- ID of the issuer of the artifactrelyingPartyId
- ID of the party the artifact was sent tosamlMessage
- the SAML message- Returns:
- the new map entry instance
-
serialize
@Nonnull public String serialize(@Nonnull SAMLArtifactMap.SAMLArtifactMapEntry instance) throws IOException Returns a string representing the input object.- Specified by:
serialize
in interfaceStorageSerializer<SAMLArtifactMap.SAMLArtifactMapEntry>
- Parameters:
instance
- object to serialize- Returns:
- a string
- Throws:
IOException
- if an error occurs during serialization
-
deserialize
@Nonnull public SAMLArtifactMap.SAMLArtifactMapEntry deserialize(long version, @Nonnull @NotEmpty String context, @Nonnull @NotEmpty String key, @Nonnull @NotEmpty String value, @Nullable Long expiration) throws IOException Returns an object recovered from a string produced through theStorageSerializer.serialize(Type)
method.- Specified by:
deserialize
in interfaceStorageSerializer<SAMLArtifactMap.SAMLArtifactMapEntry>
- Parameters:
version
- record versioncontext
- context of recordkey
- key of recordvalue
- data to deserializeexpiration
- expiration of record, if any- Returns:
- a deserialized object
- Throws:
IOException
- if an error occurs during deserialization
-