Exemplo n.º 1
0
 public void clear() throws CacheException {
   try {
     cache.remove(regionFqn);
   } catch (Exception e) {
     throw new CacheException(e);
   }
 }
Exemplo n.º 2
0
 public void remove(Object key) throws CacheException {
   try {
     cache.remove(new Fqn(regionFqn, key));
   } catch (Exception e) {
     throw new CacheException(e);
   }
 }