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

liquibase.change.custom.CustomChangeChecksum Maven / Gradle / Ivy

The newest version!
package liquibase.change.custom;

import liquibase.change.AbstractChange;
import liquibase.change.CheckSum;

/**
 * Interface to implement that allows a custom change to generate its own checksum.
 *
 * @see liquibase.change.custom.CustomChange
 * @see AbstractChange#generateCheckSum()
 */
public interface CustomChangeChecksum {

    /**
     * Generates a checksum for the current state of the change.
     *
     * @return the generated checksum
     */
    CheckSum generateChecksum();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy