@Override
 protected List<StoreRef> getAllStores() {
   List<AVMStoreDescriptor> stores = avmService.getStores();
   List<StoreRef> storeRefs = new ArrayList<StoreRef>(stores.size());
   for (AVMStoreDescriptor storeDesc : stores) {
     StoreRef storeRef = AVMNodeConverter.ToStoreRef(storeDesc.getName());
     if (avmSnapShotTriggeredIndexingMethodInterceptor.getIndexMode(storeRef.getIdentifier())
         == IndexMode.UNINDEXED) {
       // ALF-5722 fix
       continue;
     }
     storeRefs.add(storeRef);
   }
   return storeRefs;
 }