Package org.apache.catalina.filters
Class CsrfPreventionFilter.LruCache<T>
- java.lang.Object
-
- org.apache.catalina.filters.CsrfPreventionFilter.LruCache<T>
-
- Type Parameters:
T- The type held by this cache.
- All Implemented Interfaces:
java.io.Serializable,CsrfPreventionFilter.NonceCache<T>
- Enclosing class:
- CsrfPreventionFilter
protected static class CsrfPreventionFilter.LruCache<T> extends java.lang.Object implements CsrfPreventionFilter.NonceCache<T>
Despite its name, this is a FIFO cache not an LRU cache. Using an older nonce should not delay its removal from the cache in favour of more recent values.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LruCache(int cacheSize)Construct a new LruCache.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(T key)Add a nonce to the cache.booleancontains(T key)Check if the cache contains the given nonce.
-
-
-
Method Detail
-
add
public void add(T key)
Description copied from interface:CsrfPreventionFilter.NonceCacheAdd a nonce to the cache.- Specified by:
addin interfaceCsrfPreventionFilter.NonceCache<T>- Parameters:
key- The nonce to add
-
contains
public boolean contains(T key)
Description copied from interface:CsrfPreventionFilter.NonceCacheCheck if the cache contains the given nonce.- Specified by:
containsin interfaceCsrfPreventionFilter.NonceCache<T>- Parameters:
key- The nonce to check- Returns:
trueif the nonce is in the cache
-
-