final MapStore store = getMapStore();
if (store == null) {
throw new NullPointerException("First you should configure a map store");
}
final Set keys = store.loadAllKeys();
if (keys == null || keys.isEmpty()) {
return;
}
loadAll(keys, replaceExistingValues);
}