Class MessageReplayCheckerImpl
- java.lang.Object
-
- se.litsec.opensaml.saml2.common.response.MessageReplayCheckerImpl
-
- All Implemented Interfaces:
org.springframework.beans.factory.InitializingBean
,MessageReplayChecker
public class MessageReplayCheckerImpl extends Object implements MessageReplayChecker, org.springframework.beans.factory.InitializingBean
Message replay checker implementation using OpenSAML'sReplayCache
as an underlying cache.- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
-
-
Constructor Summary
Constructors Constructor Description MessageReplayCheckerImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
afterPropertiesSet()
void
checkReplay(String id)
Checks if the supplied message ID already has been processed within the time the replay checker keeps the processed items in its cache.void
checkReplay(SAMLObject object)
Checks if the supplied message contains an ID that already has been processed within the time the replay checker keeps the processed items in its cache.void
setReplayCache(ReplayCache replayCache)
Assigns the replay cache to use when checking against replay attacks.void
setReplayCacheExpiration(long replayCacheExpiration)
Assigns the number of milliseconds each stored ID should be kept in the cache.void
setReplayCacheName(String replayCacheName)
Assigns the name of the replay cache.
-
-
-
Method Detail
-
checkReplay
public void checkReplay(String id) throws MessageReplayException
Checks if the supplied message ID already has been processed within the time the replay checker keeps the processed items in its cache.- Specified by:
checkReplay
in interfaceMessageReplayChecker
- Parameters:
id
- the message ID- Throws:
MessageReplayException
- if there is a replay attack
-
checkReplay
public void checkReplay(SAMLObject object) throws MessageReplayException, IllegalArgumentException
Checks if the supplied message contains an ID that already has been processed within the time the replay checker keeps the processed items in its cache.- Specified by:
checkReplay
in interfaceMessageReplayChecker
- Parameters:
object
- the SAML message object- Throws:
MessageReplayException
- if there is a replay attackIllegalArgumentException
- if the supplied object is not supported by the cheker
-
setReplayCache
public void setReplayCache(ReplayCache replayCache)
Assigns the replay cache to use when checking against replay attacks.- Parameters:
replayCache
- the cache
-
setReplayCacheName
public void setReplayCacheName(String replayCacheName)
Assigns the name of the replay cache.- Parameters:
replayCacheName
- the name
-
setReplayCacheExpiration
public void setReplayCacheExpiration(long replayCacheExpiration)
Assigns the number of milliseconds each stored ID should be kept in the cache. The default is 5 minutes.- Parameters:
replayCacheExpiration
- number of millis
-
-