Package org.gephi.io.importer.spi
Interface DatabaseImporter
-
- All Superinterfaces:
Importer
public interface DatabaseImporter extends Importer
Importers interface for importing data from database sources.- Author:
- Mathieu Bastian
- See Also:
ImportController
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Database
getDatabase()
Returns the current database description, connection details and queriesvoid
setDatabase(Database database)
Sets the database description, connection details and queries-
Methods inherited from interface org.gephi.io.importer.spi.Importer
execute, getContainer, getReport
-
-
-
-
Method Detail
-
getDatabase
Database getDatabase()
Returns the current database description, connection details and queries- Returns:
- the database that is to be used to import
-
setDatabase
void setDatabase(Database database)
Sets the database description, connection details and queries- Parameters:
database
- the database that is to be used to import
-
-