*/
@Override
public void setAttributeExtractors(Map<String, AttributeExtractor> extractors) {
Map<String, AttributeExtractor> wrappedExtractors = new HashMap(extractors.size());
for (Entry<String, AttributeExtractor> e : extractors.entrySet()) {
wrappedExtractors.put(e.getKey(), new TransactionAwareAttributeExtractor(copyStrategy, e.getValue()));
}
underlyingStore.setAttributeExtractors(wrappedExtractors);
}