@Override
public void run() throws Exception {
AtomicLongService atomicLongService = getService();
for (Map.Entry<String, Long> longEntry : migrationData.entrySet()) {
String name = longEntry.getKey();
LongWrapper number = atomicLongService.getNumber(name);
Long value = longEntry.getValue();
number.set(value);
}
}