return value;
}
private CacheConfiguration readCacheConfiguration( String prefix, Registry registry )
{
CacheConfiguration value = new CacheConfiguration();
int timeToIdleSeconds = registry.getInt( prefix + "timeToIdleSeconds", value.getTimeToIdleSeconds() );
value.setTimeToIdleSeconds( timeToIdleSeconds );
int timeToLiveSeconds = registry.getInt( prefix + "timeToLiveSeconds", value.getTimeToLiveSeconds() );
value.setTimeToLiveSeconds( timeToLiveSeconds );
int maxElementsInMemory = registry.getInt( prefix + "maxElementsInMemory", value.getMaxElementsInMemory() );
value.setMaxElementsInMemory( maxElementsInMemory );
int maxElementsOnDisk = registry.getInt( prefix + "maxElementsOnDisk", value.getMaxElementsOnDisk() );
value.setMaxElementsOnDisk( maxElementsOnDisk );
return value;
}