Interface DbNewsExtension
-
- All Superinterfaces:
BasicExtension,org.pf4j.ExtensionPoint
- All Known Implementing Classes:
DbNewsAdapter,HSqlDbNewsExtension
public interface DbNewsExtension extends BasicExtension
DbNewsExtension.- Author:
- Andreas Rudolph
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description DbNewsHandlergetNewsHandler()String[]getRequiredProcedures()String[]getRequiredViews()String[]getSupportedDrivers()StringgetUninstallQuery()DbUpdateHandlergetUpdateHandler()voidinstall(Connection c)booleanisSupportedDriver(String driverName)static Collection<DbNewsExtension>load()static DbNewsExtensionloadByDriver(AbstractDbDriver driver)static DbNewsExtensionloadByDriver(String driverName)static DbNewsExtensionloadByProject(ImmoToolProject project)voidrepair(Connection c, AbstractDbDriver driver)-
Methods inherited from interface com.openindex.openestate.tool.extensions.BasicExtension
getRequiredPluginIds
-
-
-
-
Method Detail
-
getNewsHandler
DbNewsHandler getNewsHandler()
-
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<DbNewsExtension> load()
-
loadByDriver
static DbNewsExtension loadByDriver(AbstractDbDriver driver)
-
loadByDriver
static DbNewsExtension loadByDriver(String driverName)
-
loadByProject
static DbNewsExtension loadByProject(ImmoToolProject project)
-
-