Package com.glyart.asql.common.defaults
Class DefaultDataSourceHandler
- java.lang.Object
-
- com.glyart.asql.common.defaults.DefaultDataSourceHandler
-
- All Implemented Interfaces:
DataSourceHandler
public class DefaultDataSourceHandler extends Object implements DataSourceHandler
-
-
Constructor Summary
Constructors Constructor Description DefaultDataSourceHandler(DataSourceCredentials credentials, String poolName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Closes the connection to a data source.Connection
getConnection()
Gets the existing connection to a data source.Strategy
getStrategy()
Gets the implementation's adopted strategy.void
open()
Opens the connection to a data source.
-
-
-
Constructor Detail
-
DefaultDataSourceHandler
public DefaultDataSourceHandler(@NotNull DataSourceCredentials credentials, @Nullable String poolName)
-
-
Method Detail
-
getConnection
@NotNull public Connection getConnection() throws SQLException
Description copied from interface:DataSourceHandler
Gets the existing connection to a data source.- Specified by:
getConnection
in interfaceDataSourceHandler
- Returns:
- The connection to a data source
- Throws:
SQLException
- if something gone wrong while attempting to get the connection (no need to catch)
-
open
public void open()
Description copied from interface:DataSourceHandler
Opens the connection to a data source.
It can be used for opening connection pools.- Specified by:
open
in interfaceDataSourceHandler
-
close
public void close()
Description copied from interface:DataSourceHandler
Closes the connection to a data source.
It can be used for closing connection pools.- Specified by:
close
in interfaceDataSourceHandler
-
getStrategy
@NotNull public Strategy getStrategy()
Description copied from interface:DataSourceHandler
Gets the implementation's adopted strategy.- Specified by:
getStrategy
in interfaceDataSourceHandler
- Returns:
- the adopted strategy for connection management
- See Also:
Strategy
-
-