com.github.meixuesong.aggregatepersistence.AggregateFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aggregate-persistence Show documentation
Show all versions of aggregate-persistence Show documentation
Aggregate persistence library
package com.github.meixuesong.aggregatepersistence;
public class AggregateFactory {
public static Aggregate createAggregate(R root) {
return new Aggregate(root, new JsonDeepCopier(), new JsonComparator());
}
}