if (useCache) {
ResourceModelSourceFactory provider = nodesSourceService.providerOfType(type);
String name=ident;
if(provider instanceof Describable){
Describable desc=(Describable) provider;
Description description = desc.getDescription();
name = ident + " (" + description.getTitle() + ")";
}
return createCachingSource(sourceForConfiguration, ident,name);
} else {
return sourceForConfiguration;