liquibase.lockservice.LockServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.lockservice;
/**
* LockServiceImpl has been renamed to StandardLockService. This stub class exists for backwards comparability
*
* @deprecated use StandardLockService instead
*/
public class LockServiceImpl extends StandardLockService {
@Override
public int getPriority() {
return super.getPriority()-1;
}
}