All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pac4j.saml.replay.ReplayCacheProvider Maven / Gradle / Ivy

package org.pac4j.saml.replay;

import org.opensaml.storage.ReplayCache;

/**
 * Builds or resolves the replay cache that is used to prevent replay attacks.
 * It is important that this returns the same {@code ReplayCache} instance over
 * multiple invocations.
 *
 * @since 3.8
 */
@FunctionalInterface
public interface ReplayCacheProvider {
    ReplayCache get();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy