KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > ejb3 > cache > tree > PassivationTreeCache


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.ejb3.cache.tree;
8
9 import org.jboss.cache.TreeCache;
10 import org.jboss.cache.eviction.EvictionPolicy;
11
12 /**
13  * Comment
14  *
15  * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>
16  * @version $Revision: 1.1.6.1 $
17  */

18 public class PassivationTreeCache extends TreeCache
19 {
20    public PassivationTreeCache()
21    throws Exception JavaDoc
22    {
23    }
24
25    public EvictionPolicy getEvictionPolicy()
26    {
27       return (EvictionPolicy) eviction_policy_provider;
28    }
29 }
30
Popular Tags