Class MessageReplaySecurityHandler
- java.lang.Object
-
- net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
-
- org.opensaml.messaging.handler.AbstractMessageHandler
-
- org.opensaml.saml.common.binding.security.impl.MessageReplaySecurityHandler
-
- All Implemented Interfaces:
net.shibboleth.utilities.java.support.component.Component,net.shibboleth.utilities.java.support.component.DestructableComponent,net.shibboleth.utilities.java.support.component.InitializableComponent,org.opensaml.messaging.handler.MessageHandler
public class MessageReplaySecurityHandler extends org.opensaml.messaging.handler.AbstractMessageHandlerSecurity message handler implementation that which checks for replay of SAML messages.
-
-
Field Summary
Fields Modifier and Type Field Description private DurationexpiresTime to expire cache entries.private org.slf4j.LoggerlogLogger.private org.opensaml.storage.ReplayCachereplayCacheMessage replay cache instance to use.private booleanrequiredRuleWhether this rule is required to be met.
-
Constructor Summary
Constructors Constructor Description MessageReplaySecurityHandler()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoInitialize()protected voiddoInvoke(org.opensaml.messaging.context.MessageContext messageContext)DurationgetExpires()Gets the lifetime of replay entries.org.opensaml.storage.ReplayCachegetReplayCache()Get the replay cache instance to use.voidsetExpires(Duration exp)Sets the lifetime of replay entries.voidsetReplayCache(org.opensaml.storage.ReplayCache cache)Set the replay cache instance to use.voidsetRequiredRule(boolean flag)Set whether this rule is required to be met.-
Methods inherited from class org.opensaml.messaging.handler.AbstractMessageHandler
doPostInvoke, doPostInvoke, doPreInvoke, getActivationCondition, getLogPrefix, invoke, setActivationCondition
-
Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
destroy, doDestroy, initialize, isDestroyed, isInitialized
-
-
-
-
Field Detail
-
log
@Nonnull private final org.slf4j.Logger log
Logger.
-
replayCache
@NonnullAfterInit private org.opensaml.storage.ReplayCache replayCache
Message replay cache instance to use.
-
requiredRule
private boolean requiredRule
Whether this rule is required to be met.
-
expires
@Nonnull private Duration expires
Time to expire cache entries. Default value: (3 minutes)
-
-
Method Detail
-
getReplayCache
@NonnullAfterInit public org.opensaml.storage.ReplayCache getReplayCache()
Get the replay cache instance to use.- Returns:
- Returns the replayCache.
-
setReplayCache
public void setReplayCache(@Nonnull org.opensaml.storage.ReplayCache cache)Set the replay cache instance to use.- Parameters:
cache- The replayCache to set.
-
setRequiredRule
public void setRequiredRule(boolean flag)
Set whether this rule is required to be met.- Parameters:
flag- flag to set
-
getExpires
@Nonnull public Duration getExpires()
Gets the lifetime of replay entries.- Returns:
- lifetime of entries
-
setExpires
public void setExpires(@Nonnull Duration exp)Sets the lifetime of replay entries.- Parameters:
exp- lifetime of entries
-
doInitialize
protected void doInitialize() throws net.shibboleth.utilities.java.support.component.ComponentInitializationException- Overrides:
doInitializein classnet.shibboleth.utilities.java.support.component.AbstractInitializableComponent- Throws:
net.shibboleth.utilities.java.support.component.ComponentInitializationException
-
doInvoke
protected void doInvoke(@Nonnull org.opensaml.messaging.context.MessageContext messageContext) throws org.opensaml.messaging.handler.MessageHandlerException- Specified by:
doInvokein classorg.opensaml.messaging.handler.AbstractMessageHandler- Throws:
org.opensaml.messaging.handler.MessageHandlerException
-
-