Uses of Interface
de.akquinet.jbosscc.guttenbase.hints.ConnectorHint
-
-
Uses of ConnectorHint in de.akquinet.jbosscc.guttenbase.hints
Classes in de.akquinet.jbosscc.guttenbase.hints that implement ConnectorHint Modifier and Type Class Description class
ColumnDataMapperProviderHint
Used to find mappings for column data.class
ColumnMapperHint
Select target column(s) for given source column.class
ColumnOrderHint
Determine order of columns in SELECT statement.class
ColumnTypeMapperHint
class
ColumnTypeResolverListHint
Determine strategies to use for mapping different column types.class
DatabaseColumnFilterHint
Regard which columns when @seeDatabaseMetaDataInspectorTool
is inquiring the database for columns?class
DatabaseTableFilterHint
Regard which tables whenDatabaseMetaDataInspectorTool
is looking for tables in the given data base.class
EntityTableCheckerHint
Check if the given table is a "main" table in the sense that it represents an entity.class
ExportDumpExtraInformationHint
When exporting to e JAR/ZIP file we give the user a possibility to add extra informations to the dumped data.class
ExporterFactoryHint
Create @seeExporter
for dumping database using @seeExportDumpConnector
.class
ImportDumpExtraInformationHint
When exporting to JAR/ZIP file we give the user a possibility to retrieve extra informations from the dumped data.class
ImporterFactoryHint
Create @seeImporter
for reading dumped database using @seeImportDumpConnector
.class
MaxNumberOfDataItemsHint
How many data items may an INSERT statement have.class
NumberOfCheckedTableDataHint
How many rows of the copied tables shall be regarded when checking that data has been transferred correctly with theCheckEqualTableDataTool
tool.class
NumberOfRowsPerBatchHint
How many rows will be inserted in single transaction?class
RefreshTargetConnectionHint
Some JDBC drivers seem to accumulate data over time, even after a connection is commited() and all statements, result sets, etc. are closed.class
RepositoryColumnFilterHint
This filter is applied when @seeConnectorRepository.getDatabaseMetaData(String)
is called.class
RepositoryTableFilterHint
This filter is applied when @seeConnectorRepository.getDatabaseMetaData(String)
is called.class
ResultSetParametersHint
Set fetch size, result set type and concurrency tye for result set,class
ScriptExecutorProgressIndicatorHint
Select implementation of progress indicator.class
SelectWhereClauseHint
Optionally configure the SELECT statement created to read data from source tables with a WHERE clause.class
SplitColumnHint
Sometimes the amount of data exceeds buffers.class
TableCopyProgressIndicatorHint
Select implementation of progress indicator.class
TableMapperHint
Map tables between source and targetclass
TableOrderHint
Determine order of tables during copying/comparison.class
TableRowCountFilterHint
Some tables are really big and computing the row count may take too long for the data base.class
TableRowDataFilterHint
Filter rows by inspection of dataclass
ZipExporterClassResourcesHint
When exporting to e JAR/ZIP file we allow to add custom classes and resources to the resulting JAR. -
Uses of ConnectorHint in de.akquinet.jbosscc.guttenbase.hints.impl
Classes in de.akquinet.jbosscc.guttenbase.hints.impl that implement ConnectorHint Modifier and Type Class Description class
DefaultColumnDataMapperProviderHint
Default implementation.class
DefaultColumnMapperHint
By default return column with same name ignoring case.class
DefaultColumnOrderHint
By default order by natural order of column names.class
DefaultColumnTypeMapperHint
By default use customized mapping since database column types are sometimes different.class
DefaultColumnTypeResolverListHint
Default implementation triesHeuristicColumnTypeResolver
first, thenClassNameColumnTypeResolver
.class
DefaultDatabaseColumnFilterHint
Default implementation will accept any column.class
DefaultDatabaseTableFilterHint
Default implementation will accept any table.class
DefaultEntityTableCheckerHint
By default we check if the given table has an primary key column named "ID".class
DefaultExportDumpExtraInformationHint
By default do nothing.class
DefaultExporterFactoryHint
Default implementation usesZipExporter
.class
DefaultImportDumpExtraInformationHint
By default do nothing.class
DefaultImporterFactoryHint
Default implementation usesZipImporter
.class
DefaultMaxNumberOfDataItemsHint
Default maximum is 30000.class
DefaultNumberOfCheckedTableDataHint
Default number of checked rows is 100.class
DefaultNumberOfRowsPerBatchHint
Default number of VALUES clauses is 2000.class
DefaultRefreshTargetConnectionHint
By default, the connection is never flushed.class
DefaultRepositoryColumnFilterHint
By default accept any columnclass
DefaultRepositoryTableFilterHint
Default implementation will accept any table.class
DefaultResultSetParametersHint
Default result set fetch size is 2000.class
DefaultScriptExecutorProgressIndicatorHint
By default return logging implementation.class
DefaultSelectWhereClauseHint
Default is no WHERE clause.class
DefaultSplitColumnHint
Sometimes the amount of data exceeds buffers.class
DefaultTableCopyProgressIndicatorHint
By default return logging implementation.class
DefaultTableMapperHint
By default return table with same name ignoring case.class
DefaultTableOrderHint
By default order by natural order of table names.class
DefaultTableRowCountFilterHint
By default compute row count for all tablesclass
DefaultTableRowDataFilterHint
By default, accept all dataclass
DefaultZipExporterClassResourcesHint
By default use theZipStartup
class as the main class of the JAR.class
DisableMultipleNumberOfRowsPerBatchHint
Disable multiple value clause featureclass
HighPriorityTableOrderHint
Order by natural order of table names with some high priority exceptions ranked firstclass
SwingScriptExecutorProgressIndicatorHint
Use UI to show progress.class
SwingTableCopyProgressIndicatorHint
Use UI to show progress. -
Uses of ConnectorHint in de.akquinet.jbosscc.guttenbase.repository
Methods in de.akquinet.jbosscc.guttenbase.repository that return ConnectorHint Modifier and Type Method Description <T> ConnectorHint<T>
ConnectorRepository. getConnectorHint(String connectorId, Class<T> connectorHintType)
Get configuration hint for connector.Methods in de.akquinet.jbosscc.guttenbase.repository with parameters of type ConnectorHint Modifier and Type Method Description <T> void
ConnectorRepository. addConnectorHint(String connectorId, ConnectorHint<T> hint)
Add configuration hint for connector. -
Uses of ConnectorHint in de.akquinet.jbosscc.guttenbase.repository.impl
Methods in de.akquinet.jbosscc.guttenbase.repository.impl that return ConnectorHint Modifier and Type Method Description <T> ConnectorHint<T>
ConnectorRepositoryImpl. getConnectorHint(String connectorId, Class<T> connectionInfoHintType)
Get configuration hint for connector.Methods in de.akquinet.jbosscc.guttenbase.repository.impl with parameters of type ConnectorHint Modifier and Type Method Description <T> void
ConnectorRepositoryImpl. addConnectorHint(String connectorId, ConnectorHint<T> hint)
Add configuration hint for connector.
-