processor.setRef(newVal);
}
resolve(processor.getProperties(), true);
}
CheckpointAlgorithm checkpointAlgorithm = chunk.getCheckpointAlgorithm();
if (checkpointAlgorithm != null) {
oldVal = checkpointAlgorithm.getRef();
if (oldVal != null) { //TODO remove the if, ref attr should be required
newVal = resolve(oldVal);
if (!oldVal.equals(newVal)) {
checkpointAlgorithm.setRef(newVal);
}
}
resolve(checkpointAlgorithm.getProperties(), true);
}
}