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