Class 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's ReplayCache as an underlying cache.
    Author:
    Martin Lindström (martin.lindstrom@litsec.se)
    • Constructor Detail

      • MessageReplayCheckerImpl

        public MessageReplayCheckerImpl()
    • Method Detail

      • 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
      • afterPropertiesSet

        public void afterPropertiesSet()
                                throws Exception
        Specified by:
        afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
        Throws:
        Exception