throws CacheException, InvalidHandleException
{
ICacheElement element = this.cacheControl.get( (Serializable) name );
if ( element == null )
{
throw new InvalidHandleException( "Object for name [" + name + "] is not in the cache" );
}
// Although it will work currently, don't assume pass by reference here,
// i.e. don't do this:
// element.setElementAttributes( attr );