SettableBean
public interface JDBCOracleParamsBean extends SettableBean
Configuration parameters for a data source's Oracle-specific behavior are specified using a Oracle parameters bean.
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getAffinityPolicy() |
The affinity policy determines how JDBC connections to specific Oracle RAC
instances are selected and returned to the application.
|
java.lang.String |
getConnectionInitializationCallback() |
The name of the Connection Initialization Callback class.
|
java.lang.String |
getOnsNodeList() |
A comma-separate list of ONS daemon listen addresses and ports to which connect to
for receiving ONS-based FAN events.
|
java.lang.String |
getOnsWalletFile() |
The location of the Oracle wallet file in which the SSL certificates are stored.
|
java.lang.String |
getOnsWalletPassword() |
The wallet password attribute that is included as part of the ONS client configuration string.
|
byte[] |
getOnsWalletPasswordEncrypted() |
The encrypted database password as set with
setOnsWalletPassword() ,
or with setOnsWalletPasswordEncrypted(byte[] bytes) . |
int |
getReplayInitiationTimeout() |
The amount of time, in seconds, a data source allows for Application Continuity replay
processing before timing out and ending a replay session context.
|
boolean |
isActiveGridlink() |
Indicates a configured Active GridLink datasource.
|
boolean |
isFanEnabled() |
Enables the data source to subscribe to and process Oracle FAN events.
|
boolean |
isOracleEnableJavaNetFastPath() |
Deprecated.
12.2.1.3.1
|
boolean |
isOracleOptimizeUtf8Conversion() |
Deprecated.
14.1.2.0.0
|
boolean |
isOracleProxySession() |
Enables Oracle JDBC Proxy Authentication.
|
boolean |
isRebalanceOnUpEvent() |
Rebalancing connections incurs overhead due to connection creation to the new
instance, and the closing of connections to existing instances, which may
impact application performance under load, cause database logon storms, etc.
|
boolean |
isUseDatabaseCredentials() |
If enabled, Oracle database credentials are used in getConnection
instead of application server credentials.
|
void |
setActiveGridlink(boolean activeGridlink) |
|
void |
setAffinityPolicy(java.lang.String affinityPolicy) |
|
void |
setConnectionInitializationCallback(java.lang.String className) |
|
void |
setFanEnabled(boolean fanEnabled) |
|
void |
setOnsNodeList(java.lang.String onsNodes) |
|
void |
setOnsWalletFile(java.lang.String onsWalletFile) |
|
void |
setOnsWalletPassword(java.lang.String password) |
|
void |
setOnsWalletPasswordEncrypted(byte[] passwordEncrypted) |
|
void |
setOracleEnableJavaNetFastPath(boolean oracleEnableJavaNetFastPath) |
Deprecated.
12.2.1.3.1
|
void |
setOracleOptimizeUtf8Conversion(boolean oracleOptimizeUtf8Conversion) |
Deprecated.
14.1.2.0.0
|
void |
setOracleProxySession(boolean oracleProxySession) |
|
void |
setRebalanceOnUpEvent(boolean rebalance) |
|
void |
setReplayInitiationTimeout(int replayInitiationTimeout) |
|
void |
setUseDatabaseCredentials(boolean useDatabaseCredentials) |
boolean isFanEnabled()
Enables the data source to subscribe to and process Oracle FAN events.
This attribute is only applicable for RAC configurations that publish FAN notification events using the ONS protocol.
void setFanEnabled(boolean fanEnabled)
java.lang.String getOnsNodeList()
A comma-separate list of ONS daemon listen addresses and ports to which connect to for receiving ONS-based FAN events. It is required when connecting to Oracle 11g databases and optional when connecting to Oracle database releases 12c and higher.
void setOnsNodeList(java.lang.String onsNodes)
java.lang.String getOnsWalletFile()
The location of the Oracle wallet file in which the SSL certificates are stored. Only required when the ONS client is configured to communicate with ONS daemons using SSL.
void setOnsWalletFile(java.lang.String onsWalletFile)
byte[] getOnsWalletPasswordEncrypted()
The encrypted database password as set with setOnsWalletPassword()
,
or with setOnsWalletPasswordEncrypted(byte[] bytes)
.
void setOnsWalletPasswordEncrypted(byte[] passwordEncrypted)
java.lang.String getOnsWalletPassword()
The wallet password attribute that is included as part of the ONS client configuration string. This attribute is only required when ONS is configured to use the SSL protocol.
The value is stored in an encrypted form in the descriptor file and when displayed in an administration console.
void setOnsWalletPassword(java.lang.String password)
@Deprecated boolean isOracleEnableJavaNetFastPath()
This option no longer does anything.
@Deprecated void setOracleEnableJavaNetFastPath(boolean oracleEnableJavaNetFastPath)
boolean isOracleOptimizeUtf8Conversion()
Enables the Oracle JDBC optimize UTF-8 conversion option (no longer supported).
void setOracleOptimizeUtf8Conversion(boolean oracleOptimizeUtf8Conversion)
java.lang.String getConnectionInitializationCallback()
The name of the Connection Initialization Callback class.
This name is automatically passed to registerConnectionInitializationCallback
when a data source is created. The class must implement oracle.ucp.jdbc.ConnectionInitializationCallback
.
void setConnectionInitializationCallback(java.lang.String className)
java.lang.String getAffinityPolicy()
The affinity policy determines how JDBC connections to specific Oracle RAC instances are selected and returned to the application. When an initial connection is returned to the application, an affinity context is created that identifies the RAC instance. The affinity context is stored in the application context (global transaction or http session), propagates with the context, and is used during subsequent connection requests to return a connection to the same instance.
Options include:The affinity policy only applies to Active GridLink data sources.
void setAffinityPolicy(java.lang.String affinityPolicy)
boolean isOracleProxySession()
Enables Oracle JDBC Proxy Authentication.
void setOracleProxySession(boolean oracleProxySession)
boolean isUseDatabaseCredentials()
If enabled, Oracle database credentials are used in getConnection instead of application server credentials. The database credentials are used to get a proxy session without requiring any work in the credential mapper.
void setUseDatabaseCredentials(boolean useDatabaseCredentials)
int getReplayInitiationTimeout()
The amount of time, in seconds, a data source allows for Application Continuity replay processing before timing out and ending a replay session context.
oracle.ucp.jdbc.ConnectionInitializationCallback
.void setReplayInitiationTimeout(int replayInitiationTimeout)
boolean isActiveGridlink()
true
when using the console to create an Active
GridLink datasource. It is ignored if FanEnabled is true
or
OnsNodeList is a non-null string.void setActiveGridlink(boolean activeGridlink)
boolean isRebalanceOnUpEvent()
void setRebalanceOnUpEvent(boolean rebalance)