Package com.saperion.ngc.model
Interface ConnectionProvider<T>
-
- Type Parameters:
T
- Type of connection provider
- All Known Implementing Classes:
AbstractConnectionProvider
,ClassicConnectorProvider
,NewConnectionClassicConnectorProvider
,WorkflowConnectorProvider
public interface ConnectionProvider<T>
Interface for connection providers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
get()
Get connection instance of type T.void
releaseConnection()
Dispose the connection.
-
-
-
Method Detail
-
get
T get()
Get connection instance of type T.- Returns:
- connection
-
releaseConnection
void releaseConnection()
Dispose the connection.
-
-