public static class JdbcAuditEventHandlerConfiguration.ConnectionPool extends Object
Constructor and Description |
---|
ConnectionPool() |
Modifier and Type | Method and Description |
---|---|
boolean |
getAutoCommit()
Gets the auto commit value.
|
int |
getConnectionTimeout()
Gets the maximum amount of time to wait for a connection from the connection pool.
|
String |
getDataSourceClassName()
Gets the datasource class name for the JDBC database.
|
String |
getDriverClassName()
Gets the class name of the driver to use for the jdbc connection.
|
int |
getIdleTimeout()
Gets the maximum time a connection is allowed to be idle.
|
String |
getJdbcUrl()
Gets the JDBC database url.
|
int |
getMaxLifetime()
Gets the maximum lifetime of a connection in the connection pool.
|
int |
getMaxPoolSize()
Gets the maximum size of the connection pool.
|
int |
getMinIdle()
Gets the minimum number of idle connections in the connection pool.
|
String |
getPassword()
Gets the password to use to connect to the JDBC database.
|
String |
getPoolName()
Gets the name of the connection pool.
|
String |
getUsername()
Gets the username to use to connect to the JDBC database.
|
void |
setAutoCommit(boolean autoCommit)
Sets the auto commit value.
|
void |
setConnectionTimeout(int connectionTimeout)
Sets the maximum amount of time to wait for a connection from the connection pool.
|
void |
setDataSourceClassName(String driverClass)
Sets the datasource class name for the configured database.
|
void |
setDriverClassName(String driverClassName)
Sets the class name of the driver to use for the jdbc connection.
|
void |
setIdleTimeout(int idleTimeout)
Sets the maximum time a connection is allowed to be idle.
|
void |
setJdbcUrl(String jdbcUrl)
Sets the JDBC database url.
|
void |
setMaxLifetime(int maxLifetime)
Sets the maximum lifetime of a connection in the connection pool.
|
void |
setMaxPoolSize(int maxPoolSize)
Sets the maximum size of the connection pool.
|
void |
setMinIdle(int minIdle)
Sets the minimum number of idle connections in the connection pool.
|
void |
setPassword(String password)
Sets the password to use to connect to the JDBC database.
|
void |
setPoolName(String poolName)
Sets the name of the connection pool.
|
void |
setUsername(String username)
Sets the username to use to connect to the JDBC database.
|
public String getDriverClassName()
public void setDriverClassName(String driverClassName)
driverClassName
- The driver class name.public String getDataSourceClassName()
public void setDataSourceClassName(String driverClass)
driverClass
- The name of the JDBC driver class.public String getJdbcUrl()
public void setJdbcUrl(String jdbcUrl)
jdbcUrl
- The name of the JDBC database url.public String getUsername()
public void setUsername(String username)
username
- The username to used to connect to the JDBC database.public String getPassword()
public void setPassword(String password)
password
- The password to used to connect to the JDBC database.public String getPoolName()
public void setPoolName(String poolName)
poolName
- The name of the connection pool.public int getMaxPoolSize()
public void setMaxPoolSize(int maxPoolSize)
maxPoolSize
- The maximum pool size of the connection pool.public int getMinIdle()
public void setMinIdle(int minIdle)
minIdle
- The minimum number of idle connections in the connection pool.public int getMaxLifetime()
public void setMaxLifetime(int maxLifetime)
maxLifetime
- The maximum lifetime of a connection in the connection pool.public int getIdleTimeout()
public void setIdleTimeout(int idleTimeout)
idleTimeout
- The maximum time a connection is allowed to be idle.public int getConnectionTimeout()
public void setConnectionTimeout(int connectionTimeout)
connectionTimeout
- The maximum amount of time to wait for a connection from the connection pool.public boolean getAutoCommit()
public void setAutoCommit(boolean autoCommit)
autoCommit
- The auto commit value.Copyright © 2025 Open Identity Platform Community. All rights reserved.