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 DbMailAccountHandler
getAccountHandler()
DbMailMessageHandler
getMessageHandler()
String[]
getRequiredProcedures()
String[]
getRequiredViews()
String[]
getSupportedDrivers()
String
getUninstallQuery()
DbUpdateHandler
getUpdateHandler()
void
install(Connection c)
boolean
isSupportedDriver(String driverName)
static Collection<DbMailExtension>
load()
static DbMailExtension
loadByDriver(AbstractDbDriver driver)
static DbMailExtension
loadByDriver(String driverName)
static DbMailExtension
loadByProject(ImmoToolProject project)
void
repair(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:
IOException
SQLException
-
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)
-
-