Adds a Cache entry. @param key the key used to identify the object being stored. @param value the value to be stored in the cache. @return the previous value associated with the given key or null if there was previous value @throws CacheException if there is a problem accessing th
(K key, V value)
| 54 | * @throws CacheException if there is a problem accessing the underlying cache system |
| 55 | */ |
| 56 | V put(K key, V value) throws CacheException; |
| 57 | |
| 58 | /** |
| 59 | * Remove the cache entry corresponding to the specified key. |
no outgoing calls