1 7 package org.jboss.cache.aop; 8 9 import org.jboss.cache.CacheException; 10 import org.jboss.cache.Fqn; 11 12 31 public interface TreeCacheAopIfc { 32 39 Object getObject(String fqn) throws CacheException; 40 41 48 Object getObject(Fqn fqn) throws CacheException; 49 50 63 Object putObject(String fqn, Object obj) throws CacheException; 64 65 78 Object putObject(Fqn fqn, Object obj) throws CacheException; 79 80 87 Object removeObject(String fqn) throws CacheException; 88 89 96 Object removeObject(Fqn fqn) throws CacheException; 97 } 98 | Popular Tags |