01: package liquibase; 02: 03: import liquibase.database.Database; 04: import liquibase.exception.JDBCException; 05: 06: public interface UIFacade { 07: 08: boolean promptForNonLocalDatabase(Database database) 09: throws JDBCException; 10: }