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

org.swiftboot.data.constant.AutoUpdateTimeStrategy Maven / Gradle / Ivy

There is a newer version: 2.4.8
Show newest version
package org.swiftboot.data.constant;

/**
 * @author swiftech
 * @since 2.0.0
 */
public interface AutoUpdateTimeStrategy {

    /**
     * Not set update time.
     */
    String AUTO_UPDATE_TIME_NOT_SET = "not-set";

    /**
     * Set update time when fields of entity is changed.
     */
    String AUTO_UPDATE_TIME_ON_CHANGE = "on-change";

    /**
     * Set update time no matter any fields of entity is changed or not.
     */
    String AUTO_UPDATE_TIME_ALWAYS = "always";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy