Hi,
Now during my integration with hibernate 3.0 with jboss, I modified DeployeeTreeCache to import org.hibernate.cache instead of net.sf.
As Cache.java is interface and having methods like toMap() and update(), my DeployeTreeCache must implement them. Can you send me the file which is compatible with cache of hibernate 3.0
My snippet of code as below.
package org.jboss.hibernate.cache;
import org.hibernate.cache.Cache;
import org.hibernate.cache.CacheException;
import org.jboss.cache.TreeCacheMBean;
import org.jboss.cache.Fqn;
import java.util.Map;
/**
* A Hibernate Cache implementation wraps the passed TreeCache
* (presumably gotten from JNDI).
*
* @author <a href="mailto:
[email protected]">Steve Ebersole</a>
* @version <tt>$Revision: 1.1.2.1 $</tt>
*/
public class DeployedTreeCache
implements Cache
{
private static final String ITEM = "item";
Regards