Class MessageLifetimeSecurityHandler
- java.lang.Object
-
- net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
-
- org.opensaml.messaging.handler.AbstractMessageHandler
-
- org.opensaml.saml.common.binding.security.impl.MessageLifetimeSecurityHandler
-
- All Implemented Interfaces:
Component,DestructableComponent,InitializableComponent,MessageHandler
public class MessageLifetimeSecurityHandler extends AbstractMessageHandler
Security message handler implementation that checks for validity of SAML message issue instant date and time.
-
-
Field Summary
Fields Modifier and Type Field Description private DurationclockSkewClock skew adjustment in both directions to consider still acceptable (Default value: 3 minutes).private org.slf4j.LoggerlogClass logger.private DurationmessageLifetimeAmount of time for which a message is valid after it is issued (Default value: 3 minutes).private booleanrequiredRuleWhether this rule is required to be met.
-
Constructor Summary
Constructors Constructor Description MessageLifetimeSecurityHandler()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddoInvoke(MessageContext messageContext)DurationgetClockSkew()Get the clock skew.DurationgetMessageLifetime()Gets the amount of time for which a message is valid.booleanisRequiredRule()Gets whether this rule is required to be met.voidsetClockSkew(Duration skew)Set the clock skew.voidsetMessageLifetime(Duration lifetime)Sets the amount of time for which a message is valid.voidsetRequiredRule(boolean required)Sets 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, 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 Detail
-
log
@Nonnull private final org.slf4j.Logger log
Class logger.
-
clockSkew
@Nonnull private Duration clockSkew
Clock skew adjustment in both directions to consider still acceptable (Default value: 3 minutes).
-
messageLifetime
@Nonnull private Duration messageLifetime
Amount of time for which a message is valid after it is issued (Default value: 3 minutes).
-
requiredRule
private boolean requiredRule
Whether this rule is required to be met.
-
-
Method Detail
-
getClockSkew
@Nonnull public Duration getClockSkew()
Get the clock skew.- Returns:
- the clock skew
-
setClockSkew
public void setClockSkew(@Nonnull Duration skew)Set the clock skew.- Parameters:
skew- clock skew to set
-
getMessageLifetime
@Nonnull public Duration getMessageLifetime()
Gets the amount of time for which a message is valid.- Returns:
- amount of time for which a message is valid
-
setMessageLifetime
public void setMessageLifetime(@Nonnull Duration lifetime)Sets the amount of time for which a message is valid.- Parameters:
lifetime- amount of time for which a message is valid
-
isRequiredRule
public boolean isRequiredRule()
Gets whether this rule is required to be met.- Returns:
- whether this rule is required to be met
-
setRequiredRule
public void setRequiredRule(boolean required)
Sets whether this rule is required to be met.- Parameters:
required- whether this rule is required to be met
-
doInvoke
public void doInvoke(@Nonnull MessageContext messageContext) throws MessageHandlerException- Specified by:
doInvokein classAbstractMessageHandler- Throws:
MessageHandlerException
-
-