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 DbContactsEntryLogHandlergetContactsEntryLogHandler()DbContactsHandlergetContactsHandler()String[]getRequiredProcedures()String[]getRequiredViews()String[]getSupportedDrivers()StringgetUninstallQuery()DbUpdateHandlergetUpdateHandler()voidinstall(Connection c)booleanisSupportedDriver(String driverName)static Collection<DbContactsExtension>load()static DbContactsExtensionloadByDriver(AbstractDbDriver driver)static DbContactsExtensionloadByDriver(String driverName)static DbContactsExtensionloadByProject(ImmoToolProject project)voidrepair(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:
IOExceptionSQLException
-
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)
-
-