Package com.exasol.adapter
Interface AdapterFactory
-
public interface AdapterFactoryFactory that creates a Virtual Schema Adapter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VirtualSchemaAdaptercreateAdapter()Create a new instance of the Virtual Schema AdapterStringgetAdapterName()Get the name of the Virtual Schema AdapterStringgetAdapterVersion()Get the version of the Virtual Schema AdapterSet<String>getSupportedAdapterNames()List the adapter names the adapter handles
-
-
-
Method Detail
-
getSupportedAdapterNames
Set<String> getSupportedAdapterNames()
List the adapter names the adapter handles- Returns:
- names for which the adapter is responsible
-
createAdapter
VirtualSchemaAdapter createAdapter()
Create a new instance of the Virtual Schema Adapter- Returns:
- new instance
-
getAdapterVersion
String getAdapterVersion()
Get the version of the Virtual Schema Adapter- Returns:
- Virtual Schema Adapter version
-
getAdapterName
String getAdapterName()
Get the name of the Virtual Schema Adapter- Returns:
- Virtual Schema Adapter name
-
-