Interface OptionalTool
-
- All Known Implementing Classes:
DBMDWrapper,ForeignDBViews,OptimizerTracer,OptTraceViewer
public interface OptionalToolInterface implemented by optional tools which can be loaded and unloaded. In addition to the methods listed here, an OptionalTool must have a public no-arg constructor so that it can be instantiated by the DataDictionary.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidloadTool(java.lang.String... configurationParameters)Load the tool, giving it optional configuration parametersvoidunloadTool(java.lang.String... configurationParameters)Unload the tool, giving it optional configuration parameters
-
-
-
Method Detail
-
loadTool
void loadTool(java.lang.String... configurationParameters) throws java.sql.SQLExceptionLoad the tool, giving it optional configuration parameters- Throws:
java.sql.SQLException
-
unloadTool
void unloadTool(java.lang.String... configurationParameters) throws java.sql.SQLExceptionUnload the tool, giving it optional configuration parameters- Throws:
java.sql.SQLException
-
-