Package migratedb.core.api
Interface DatabaseTypeRegister
-
- All Known Implementing Classes:
DatabaseTypeRegisterImpl
public interface DatabaseTypeRegister
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatabaseTypegetDatabaseTypeForConnection(Connection connection)DatabaseTypegetDatabaseTypeForUrl(String url)List<DatabaseType>getDatabaseTypes()StringredactJdbcUrl(String url)
-
-
-
Method Detail
-
getDatabaseTypes
List<DatabaseType> getDatabaseTypes()
- Returns:
- Unmodifiable list of registered database types, ordered by
priority.
-
getDatabaseTypeForUrl
DatabaseType getDatabaseTypeForUrl(String url)
-
getDatabaseTypeForConnection
DatabaseType getDatabaseTypeForConnection(Connection connection)
-
-