/**
* Objective Database Abstraction Layer (ODAL)
* Copyright (c) 2004, The ODAL Development Group
* All rights reserved.
* For definition of the ODAL Development Group please refer to LICENCE.txt file
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package com.completex.objective.components.cache.impl;
/**
* @see BasicCache
*
* @author Gennady Krizhevsky
*/
public class CallCache extends BasicCache {
public CallCache(int capacity) {
super(new SimpleCallResourceFactory(), capacity);
}
}
|