Package io.quarkus.agroal.runtime
Class UnconfiguredDataSource
- java.lang.Object
-
- io.quarkus.agroal.runtime.UnconfiguredDataSource
-
- All Implemented Interfaces:
io.agroal.api.AgroalDataSource,Serializable,AutoCloseable,Wrapper,CommonDataSource,DataSource
public class UnconfiguredDataSource extends Object implements io.agroal.api.AgroalDataSource
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnconfiguredDataSource(String errorMessage)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush(io.agroal.api.AgroalDataSource.FlushMode mode)io.agroal.api.configuration.AgroalDataSourceConfigurationgetConfiguration()ConnectiongetConnection()ConnectiongetConnection(String username, String password)intgetLoginTimeout()PrintWritergetLogWriter()io.agroal.api.AgroalDataSourceMetricsgetMetrics()LoggergetParentLogger()List<io.agroal.api.AgroalPoolInterceptor>getPoolInterceptors()booleanisWrapperFor(Class<?> iface)voidsetLoginTimeout(int seconds)voidsetLogWriter(PrintWriter out)voidsetPoolInterceptors(Collection<? extends io.agroal.api.AgroalPoolInterceptor> arg0)voidthrowException()<T> Tunwrap(Class<T> iface)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.sql.CommonDataSource
createShardingKeyBuilder
-
Methods inherited from interface javax.sql.DataSource
createConnectionBuilder
-
-
-
-
Constructor Detail
-
UnconfiguredDataSource
public UnconfiguredDataSource(String errorMessage)
-
-
Method Detail
-
throwException
public void throwException()
-
getConfiguration
public io.agroal.api.configuration.AgroalDataSourceConfiguration getConfiguration()
- Specified by:
getConfigurationin interfaceio.agroal.api.AgroalDataSource
-
getMetrics
public io.agroal.api.AgroalDataSourceMetrics getMetrics()
- Specified by:
getMetricsin interfaceio.agroal.api.AgroalDataSource
-
flush
public void flush(io.agroal.api.AgroalDataSource.FlushMode mode)
- Specified by:
flushin interfaceio.agroal.api.AgroalDataSource
-
setPoolInterceptors
public void setPoolInterceptors(Collection<? extends io.agroal.api.AgroalPoolInterceptor> arg0)
- Specified by:
setPoolInterceptorsin interfaceio.agroal.api.AgroalDataSource
-
getPoolInterceptors
public List<io.agroal.api.AgroalPoolInterceptor> getPoolInterceptors()
- Specified by:
getPoolInterceptorsin interfaceio.agroal.api.AgroalDataSource
-
close
public void close()
- Specified by:
closein interfaceio.agroal.api.AgroalDataSource- Specified by:
closein interfaceAutoCloseable
-
getConnection
public Connection getConnection() throws SQLException
- Specified by:
getConnectionin interfaceDataSource- Throws:
SQLException
-
getConnection
public Connection getConnection(String username, String password) throws SQLException
- Specified by:
getConnectionin interfaceDataSource- Throws:
SQLException
-
getLogWriter
public PrintWriter getLogWriter() throws SQLException
- Specified by:
getLogWriterin interfaceCommonDataSource- Specified by:
getLogWriterin interfaceDataSource- Throws:
SQLException
-
setLogWriter
public void setLogWriter(PrintWriter out) throws SQLException
- Specified by:
setLogWriterin interfaceCommonDataSource- Specified by:
setLogWriterin interfaceDataSource- Throws:
SQLException
-
setLoginTimeout
public void setLoginTimeout(int seconds) throws SQLException- Specified by:
setLoginTimeoutin interfaceCommonDataSource- Specified by:
setLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
getLoginTimeout
public int getLoginTimeout() throws SQLException- Specified by:
getLoginTimeoutin interfaceCommonDataSource- Specified by:
getLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
getParentLogger
public Logger getParentLogger() throws SQLFeatureNotSupportedException
- Specified by:
getParentLoggerin interfaceCommonDataSource- Throws:
SQLFeatureNotSupportedException
-
unwrap
public <T> T unwrap(Class<T> iface) throws SQLException
- Specified by:
unwrapin interfaceWrapper- Throws:
SQLException
-
isWrapperFor
public boolean isWrapperFor(Class<?> iface) throws SQLException
- Specified by:
isWrapperForin interfaceWrapper- Throws:
SQLException
-
-