com.github.meixuesong.aggregatepersistence.Versionable 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 interface Versionable {
int NEW_VERSION = 0;
int getVersion();
}