Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle TopLink
11g Release 1 (11.1.1)

B32476-02


oracle.toplink.sessions
Class DatasourceLogin

java.lang.Object
  extended by oracle.toplink.sessions.DatasourceLogin

All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, Login
Direct Known Subclasses:
DatabaseLogin, EISLogin, SDKLogin, XMLLogin

public abstract class DatasourceLogin
extends java.lang.Object
implements Login, java.io.Serializable, java.lang.Cloneable

Purpose: Hold the configuration information necessary to connect to a datasource.

Description: This is an abstract class that defines the common datasource independent connection configuration. It is extended to support specific datasources such as JDBC, JCA, XML, etc.

See Also:
Serialized Form

Field Summary
static int CONCURRENT_READ_WRITE
          Reads and unit of work merges can occur concurrently.
static int SYNCHRONIZED_READ_ON_WRITE
          Reads and unit of work merges will be serialized.
static int SYNCHRONIZED_WRITE
          Reads can occur concurrently but unit of work merges will be serialized.
static int SYNCRONIZED_OBJECT_LEVEL_READ_WRITE
          Writes to the cache (merge, object build/refresh will be synchronized as will cache access (cloning) based on when access is required.
static int SYNCRONIZED_OBJECT_LEVEL_READ_WRITE_DATABASE
          Writes to the cache (merge, object build/refresh will be synchronized as will cache access (cloning) based on database transaction.
static java.lang.String versionString
           

 

Constructor Summary
DatasourceLogin()
          Create a new login.
DatasourceLogin(oracle.toplink.internal.databaseaccess.Platform databasePlatform)
          ADVANCED: Create a new login for the given platform.

 

Method Summary
 void addSequence(Sequence sequence)
          Add sequence corresponding to the name
 void dontUseExternalConnectionPooling()
          Do not use external connection pooling.
 void dontUseExternalTransactionController()
          Let TopLink control transactions instead of some external transaction service such as JTS.
 int getCacheTransactionIsolation()
          ADVANCED: By default concurrency is optimized and the cache is not locked more than required during reads or writes, This allows for virtual concurrent reading and writing and should never cause any problems.
 Connector getConnector()
          ADVANCED: Return the connector that will instantiate the connection.
 oracle.toplink.internal.databaseaccess.Platform getDatasourcePlatform()
          Return the datasource platform specific information.
 Sequence getDefaultSequence()
          Get default sequence
 java.lang.String getPassword()
          Return the password.
 java.lang.Object getProperty(java.lang.String name)
          The properties are additional, driver-specific, connection information to be passed to the driver.
 Sequence getSequence(java.lang.String seqName)
          Get sequence corresponding to the name
 int getSequencePreallocationSize()
          Deprecated. use getDefaultSequence().getPreallocationSize() instead
 java.util.Map getSequences()
          Returns a map of sequence names to Sequences (may be null).
 java.lang.String getTableQualifier()
          Return the qualifier for the all of the tables referenced by TopLink.
 java.lang.String getUserName()
          The user name is the database login name.
static java.lang.String getVersion()
          Return the TopLink version.
 boolean isConnectionHealthValidatedOnError()
          This value defaults to false when not on a DatabaseLogin as the functionality has not been implemented for other datasource type.
 void removeAllSequences()
          Remove all sequences but the default one.
 void removeProperty(java.lang.String propertyName)
          Some drivers don't like the "user" and "password" properties.
 Sequence removeSequence(java.lang.String seqName)
          Remove sequence corresponding to name.
 void setCacheTransactionIsolation(int cacheTransactionIsolation)
          ADVANCED: By default concurrency is optimized and the cache is not locked more than required during reads or writes, This allows for virtual concurrent reading and writing and should never cause any problems.
 void setConnector(Connector connector)
          Set the connector that will instantiate the connection.
 void setDatasourcePlatform(oracle.toplink.internal.databaseaccess.Platform platform)
          Set the database platform specific information.
 void setDefaultNullValue(java.lang.Class type, java.lang.Object value)
          The default value to substitute for database NULLs can be configured on a per-class basis.
 void setDefaultSequence(Sequence sequence)
          Set default sequence
 void setEncryptedPassword(java.lang.String password)
          Set the encrypted password.
 void setEncryptionClassName(java.lang.String encryptionClassName)
          Sets the encryption class name
 void setPassword(java.lang.String password)
          Set the password.
 void setProperties(java.util.Properties properties)
          The properties are additional, driver-specific, connection information to be passed to the JDBC driver.
 void setProperty(java.lang.String propertyName, java.lang.Object propertyValue)
          Some JDBC drivers require additional, driver-specific, properties.
 void setSelectSequenceNumberQuery(ValueReadQuery selectSequenceNumberQuery)
          Deprecated. use ((QuerySequence)getDefaultSequence()).setSelectQuery(ValueReadQuery) instead
 void setSequencePreallocationSize(int size)
          Deprecated. use getDefaultSequence().setPreallocationSize(int) instead
 void setTableQualifier(java.lang.String qualifier)
          Set the default qualifier for all tables.
 void setTimestampQuery(ValueReadQuery timestampQuery)
          Override the default query for returning a timestamp from the server.
 void setUpdateSequenceQuery(DataModifyQuery updateSequenceNumberQuery)
          Deprecated. use ((QuerySequence)getDefaultSequence()).setUpdateQuery(DataModifyQuery) instead
 void setUserName(java.lang.String name)
          The user name is the database login name.
 void setUsesExternalConnectionPooling(boolean usesExternalConnectionPooling)
          Return whether TopLink uses some external connection pooling service such as a JDBC 2.0 driver.
 void setUsesExternalTransactionController(boolean usesExternalTransactionController)
          Return whether TopLink uses some external transaction service such as JTS.
 boolean shouldUseExternalConnectionPooling()
          Return whether TopLink uses some external connection pooling (e.g.
 boolean shouldUseExternalTransactionController()
          Return whether TopLink uses some external transaction service such as JTS.
 java.lang.String toString()
          Print all of the connection information.
 void useExternalConnectionPooling()
          Use external connection pooling.
 void useExternalTransactionController()
          Use an external transaction controller such as a JTS service
 void usePlatform(oracle.toplink.internal.databaseaccess.Platform platform)
          ADVANCED: Set the database platform to be custom platform.

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait

 

Field Detail

versionString

public static java.lang.String versionString

CONCURRENT_READ_WRITE

public static final int CONCURRENT_READ_WRITE
Description copied from class: DatasourceLogin
Reads and unit of work merges can occur concurrently.
See Also:
Constant Field Values

SYNCHRONIZED_WRITE

public static final int SYNCHRONIZED_WRITE
Description copied from class: DatasourceLogin
Reads can occur concurrently but unit of work merges will be serialized.
See Also:
Constant Field Values

SYNCHRONIZED_READ_ON_WRITE

public static final int SYNCHRONIZED_READ_ON_WRITE
Description copied from class: DatasourceLogin
Reads and unit of work merges will be serialized.
See Also:
Constant Field Values

SYNCRONIZED_OBJECT_LEVEL_READ_WRITE

public static final int SYNCRONIZED_OBJECT_LEVEL_READ_WRITE
Description copied from class: DatasourceLogin
Writes to the cache (merge, object build/refresh will be synchronized as will cache access (cloning) based on when access is required.
See Also:
Constant Field Values

SYNCRONIZED_OBJECT_LEVEL_READ_WRITE_DATABASE

public static final int SYNCRONIZED_OBJECT_LEVEL_READ_WRITE_DATABASE
Description copied from class: DatasourceLogin
Writes to the cache (merge, object build/refresh will be synchronized as will cache access (cloning) based on database transaction.
See Also:
Constant Field Values

Constructor Detail

DatasourceLogin

public DatasourceLogin()
Create a new login.

DatasourceLogin

public DatasourceLogin(oracle.toplink.internal.databaseaccess.Platform databasePlatform)
ADVANCED: Create a new login for the given platform.

Method Detail

getCacheTransactionIsolation

public int getCacheTransactionIsolation()
ADVANCED: By default concurrency is optimized and the cache is not locked more than required during reads or writes, This allows for virtual concurrent reading and writing and should never cause any problems. If the application uses no form of locking the last unit of work to merge changes will win, with no locking it is possible only under this senerio for two unit of works to merge changes different than the database although highly unlikely and if occured is the entire purpose of locking and locking is the suggested solution if this is a problem. This property allows for the isolation level of changes to the cache to be configured for sever situations and it is not suggest that this be changed.

Setting are: