Interface DbContactsExtension
-
- All Superinterfaces:
BasicExtension
,org.pf4j.ExtensionPoint
- All Known Implementing Classes:
DbContactsAdapter
,HSqlDbContactsExtension
public interface DbContactsExtension extends BasicExtension
DbContactsExtension.- Author:
- Andreas Rudolph
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description DbContactsEntryLogHandler
getContactsEntryLogHandler()
DbContactsHandler
getContactsHandler()
String[]
getRequiredProcedures()
String[]
getRequiredViews()
String[]
getSupportedDrivers()
String
getUninstallQuery()
DbUpdateHandler
getUpdateHandler()
void
install(Connection c)
boolean
isSupportedDriver(String driverName)
static Collection<DbContactsExtension>
load()
static DbContactsExtension
loadByDriver(AbstractDbDriver driver)
static DbContactsExtension
loadByDriver(String driverName)
static DbContactsExtension
loadByProject(ImmoToolProject project)
void
repair(Connection c, AbstractDbDriver driver)
-
Methods inherited from interface com.openindex.openestate.tool.extensions.BasicExtension
getRequiredPluginIds
-
-
-
-
Method Detail
-
getContactsEntryLogHandler
DbContactsEntryLogHandler getContactsEntryLogHandler()
-
getContactsHandler
DbContactsHandler getContactsHandler()
-
getRequiredProcedures
String[] getRequiredProcedures()
-
getRequiredViews
String[] getRequiredViews()
-
getSupportedDrivers
String[] getSupportedDrivers()
-
getUninstallQuery
String getUninstallQuery() throws IOException
- Throws:
IOException
-
getUpdateHandler
DbUpdateHandler getUpdateHandler()
-
install
void install(Connection c) throws IOException, SQLException
- Throws:
IOException
SQLException
-
isSupportedDriver
boolean isSupportedDriver(String driverName)
-
repair
void repair(Connection c, AbstractDbDriver driver) throws SQLException
- Throws:
SQLException
-
load
static Collection<DbContactsExtension> load()
-
loadByDriver
static DbContactsExtension loadByDriver(AbstractDbDriver driver)
-
loadByDriver
static DbContactsExtension loadByDriver(String driverName)
-
loadByProject
static DbContactsExtension loadByProject(ImmoToolProject project)
-
-