Example usage for org.apache.commons.collections.map LRUMap subclass-usage

List of usage examples for org.apache.commons.collections.map LRUMap subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections.map LRUMap subclass-usage.

Usage

From source file org.apache.jackrabbit.core.cache.GrowingLRUMap.java

/**
 * <code>GrowingLRUMap</code> extends the LRUMap such that it can grow from
 * the specified <code>initialSize</code> to the specified <code>maxSize</code>;
 */
public class GrowingLRUMap extends LRUMap {

From source file org.apache.lenya.util.CacheMap.java

/**
 * A map with a maximum capacity. When the map is full, the oldest entry is removed.
 * @deprecated Use org.apache.commons.collections.map.LRUMap 
 */
public class CacheMap extends LRUMap {

From source file org.apache.myfaces.flow.cdi.ClientWindowFacesFlowLRUMap.java

/**
 *
 */
class ClientWindowFacesFlowLRUMap extends LRUMap implements Serializable {
    private transient FlowScopeBeanHolder holder;

From source file org.jasig.portal.io.LoggingLRUMap.java

/**
 * @author Eric Dalquist
 * @version $Revision$
 */
public class LoggingLRUMap extends LRUMap {
    protected final Log logger = LogFactory.getLog(this.getClass());

From source file org.apache.openjpa.lib.util.LRUMap.java

/**
 * Extension of the commons <code>LRUMap</code> that can change its
 * maximum size.
 *
 * @author Abe White
 * @nojavadoc

From source file org.apache.myfaces.shared.context.flash.ClientWindowFlashTokenLRUMap.java

/**
 *
 */
class ClientWindowFlashTokenLRUMap extends LRUMap implements Serializable {

    public ClientWindowFlashTokenLRUMap() {