Package org.pentaho.di.connections
Interface ConnectionProvider<T extends ConnectionDetails>
-
- All Known Subinterfaces:
VFSConnectionProvider<T>
- All Known Implementing Classes:
BaseVFSConnectionProvider
,OtherConnectionDetailsProvider
public interface ConnectionProvider<T extends ConnectionDetails>
Created by bmorrise on 2/12/19.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Class<T>
getClassType()
List<T>
getConnectionDetails()
String
getKey()
String
getName()
List<String>
getNames()
T
prepare(T connectionDetails)
boolean
test(T connectionDetails)
-
-
-
Method Detail
-
getName
String getName()
-
getKey
String getKey()
-
test
boolean test(T connectionDetails) throws KettleException
- Throws:
KettleException
-
prepare
T prepare(T connectionDetails) throws KettleException
- Throws:
KettleException
-
-