.getLogger(PersistAlgorithmUnified.class);
private final PersistAlgorithm persistAlgorithm;
public PersistAlgorithmUnified(IsisConfiguration configuration) {
final PersistorImplementation persistorImplementation = PersistorImplementation.from(configuration);
persistAlgorithm = persistorImplementation.isDataNucleus()
? new PersistAlgorithmForDataNucleus()
: new PersistAlgorithmDefault();
}