public void clearRegionCache( String region ) {
if ( cacheEnabled ) {
Cache cache = regionCache.get( region );
if ( cache != null ) {
try {
cache.clear();
} catch ( CacheException e ) {
CacheManager.logger.error( Messages.getInstance().getString(
"CacheManager.ERROR_0006_CACHE_EXCEPTION", e.getLocalizedMessage() ) ); //$NON-NLS-1$
}
} else {