1 package org.activestack.framework.cache;
2
3 /**
4 * Describe the purpose of this interface here.
5 */
6 public interface ASCache {
7 void put(final Object key, final Object value);
8
9 Object get(final Object key);
10
11 Object remove(final Object key);
12
13 long size();
14
15 void clear();
16 }