All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javers.core.CommitIdGenerator Maven / Gradle / Ivy

There is a newer version: 7.6.1
Show newest version
package org.javers.core;

import org.javers.repository.api.JaversRepository;

/**
 * @author bartosz.walacik
 */
public enum CommitIdGenerator {
    /**
     * Generates neat sequence of commitId numbers. Based on {@link JaversRepository#getHeadId()}.
     * 
* Should not be used in distributed applications. */ SYNCHRONIZED_SEQUENCE, /** * Fast algorithm based on UUID. For distributed applications. * @deprecated */ @Deprecated RANDOM }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy