Interface DbMailExtension
-
- All Superinterfaces:
BasicExtension,org.pf4j.ExtensionPoint
- All Known Implementing Classes:
DbMailAdapter,HSqlDbMailExtension
public interface DbMailExtension extends BasicExtension
DbMailExtension.- Author:
- Andreas Rudolph
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description DbMailAccountHandlergetAccountHandler()DbMailMessageHandlergetMessageHandler()String[]getRequiredProcedures()String[]getRequiredViews()String[]getSupportedDrivers()StringgetUninstallQuery()DbUpdateHandlergetUpdateHandler()voidinstall(Connection c)booleanisSupportedDriver(String driverName)static Collection<DbMailExtension>load()static DbMailExtensionloadByDriver(AbstractDbDriver driver)static DbMailExtensionloadByDriver(String driverName)static DbMailExtensionloadByProject(ImmoToolProject project)voidrepair(Connection c, AbstractDbDriver driver)-
Methods inherited from interface com.openindex.openestate.tool.extensions.BasicExtension
getRequiredPluginIds
-
-
-
-
Method Detail
-
getAccountHandler
DbMailAccountHandler getAccountHandler()
-
getMessageHandler
DbMailMessageHandler getMessageHandler()
-
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<DbMailExtension> load()
-
loadByDriver
static DbMailExtension loadByDriver(AbstractDbDriver driver)
-
loadByDriver
static DbMailExtension loadByDriver(String driverName)
-
loadByProject
static DbMailExtension loadByProject(ImmoToolProject project)
-
-