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

jasmine.framework.test.liquibase.CustomSpringLiquibase Maven / Gradle / Ivy

There is a newer version: 1.3.8
Show newest version
package jasmine.framework.test.liquibase;

import jasmine.framework.common.util.ErrorUtil;
import jasmine.framework.context.CustomInitializingSingleton;
import liquibase.exception.LiquibaseException;
import liquibase.integration.spring.SpringLiquibase;

/**
 * @author mh.z
 */
public class CustomSpringLiquibase extends SpringLiquibase implements CustomInitializingSingleton {

    @Override
    public void afterPropertiesSet() throws LiquibaseException {
        //
    }

    @Override
    public void afterSingletonsInstantiated() {
        try {
            super.afterPropertiesSet();
        } catch (LiquibaseException e) {
            throw ErrorUtil.sneakyError(e);
        }
    }

    @Override
    public int getOrder() {
        return 0;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy