protected void cacheServiceConfig(final Map<String, Object> map) {
if (cacheManager == null) {
this.setConfig(map, "cache.service.impl", this.cacheService);
} else {
final SpringRythmCache springRythmCache =
new SpringRythmCache(cacheManager.getCache(this.springCacheName));
this.setConfig(map, "cache.service.impl", springRythmCache);
}
}