Returns the Cached value stored under the specified key or null if there is no Cache entry for that key. @param key the key that the value was previous added with @return the cached object or null if there is no entry for the specified key @throws CacheExcept
(K key)
| 44 | * @throws CacheException if there is a problem accessing the underlying cache system |
| 45 | */ |
| 46 | V get(K key) throws CacheException; |
| 47 | |
| 48 | /** |
| 49 | * Adds a Cache entry. |
no outgoing calls