Package org.jboss.jca.adapters.jdbc.util
Class LRUCache.LRUCacheEntry<K,V>
java.lang.Object
org.jboss.jca.adapters.jdbc.util.LRUCache.LRUCacheEntry<K,V>
Double linked cell used as entry in the cache list.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedLRUCacheEntry(K key, V value) Creates a new double linked cell, storing the object we want to cache and the key that is used to retrieve it. -
Method Summary
-
Constructor Details
-
LRUCacheEntry
Creates a new double linked cell, storing the object we want to cache and the key that is used to retrieve it.- Parameters:
key- The keyvalue- The value
-
-
Method Details