public List getAllValuesFromRegionCache( String region ) {
List list = new ArrayList<Object>();
if ( cacheEnabled ) {
Cache cache = regionCache.get( region );
if ( cacheEnabled( region ) ) {
Map cacheMap = cache.toMap();
if ( cacheMap != null ) {
Iterator it = cacheMap.entrySet().iterator();
while ( it.hasNext() ) {
Map.Entry entry = (Map.Entry) it.next();
list.add( entry.getValue() );