Package org.eclipse.persistence.sessions
Class SessionEventAdapter
- java.lang.Object
-
- org.eclipse.persistence.sessions.SessionEventAdapter
-
- All Implemented Interfaces:
java.util.EventListener
,CoreSessionEventListener
,SessionEventListener
- Direct Known Subclasses:
org.eclipse.persistence.internal.jaxb.SessionEventListener
public abstract class SessionEventAdapter extends java.lang.Object implements SessionEventListener
Purpose: To provide a trivial implemetation of SessionEventListener. You may subclass this class rather than implement the entire SessonEventListener interface in cases where only a small subset of the interface methods are needed.
-
-
Constructor Summary
Constructors Constructor Description SessionEventAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
missingDescriptor(SessionEvent event)
PUBLIC: This event is raised on the session if a descriptor is missing for a class being persisted.void
moreRowsDetected(SessionEvent event)
PUBLIC: This event is raised on the session after read object query detected more than a single row back from the database.void
noRowsModified(SessionEvent event)
PUBLIC: This event is raised on the session after update or delete SQL has been sent to the database but a row count of zero was returned.void
outputParametersDetected(SessionEvent event)
PUBLIC: This event is raised on the session after a stored procedure call has been executed that had output parameters.void
postAcquireClientSession(SessionEvent event)
PUBLIC: This event is raised on the client session after creation/acquiring.void
postAcquireConnection(SessionEvent event)
PUBLIC: This event is raised on when using the server/client sessions.void
postAcquireExclusiveConnection(SessionEvent event)
PUBLIC: This event is raised when a ClientSession, with Isolated data, acquires an exclusive connection.void
postAcquireUnitOfWork(SessionEvent event)
PUBLIC: This event is raised on the unit of work after creation/acquiring.void
postBeginTransaction(SessionEvent event)
PUBLIC: This event is raised after a database transaction is started.void
postCalculateUnitOfWorkChangeSet(SessionEvent event)
PUBLIC: This event is raised after the commit has begun on the UnitOfWork and after the changes are calculated.void
postCommitTransaction(SessionEvent event)
PUBLIC: This event is raised after a database transaction is commited.void
postCommitUnitOfWork(SessionEvent event)
PUBLIC: This event is raised on the unit of work after commit.void
postConnect(SessionEvent event)
PUBLIC: This event is raised after the session connects to the database.void
postDistributedMergeUnitOfWorkChangeSet(SessionEvent event)
PUBLIC: This even will be raised after a UnitOfWorkChangeSet has been merged When that changeSet has been received from a distributed sessionvoid
postExecuteCall(SessionEvent event)
PUBLIC: This event is raised after the execution of every call against the session.void
postExecuteQuery(SessionEvent event)
PUBLIC: This event is raised after the execution of every query against the session.void
postFlushUnitOfWork(SessionEvent event)
PUBLIC: This event is raised on the unit of work after a flush.void
postLogin(SessionEvent event)
PUBLIC: This Event is raised after the session logs in.void
postLogout(SessionEvent event)
PUBLIC: This Event is raised after the session logs out.void
postMergeUnitOfWorkChangeSet(SessionEvent event)
PUBLIC: This even will be raised after a UnitOfWorkChangeSet has been mergedvoid
postReleaseClientSession(SessionEvent event)
PUBLIC: This event is raised on the client session after releasing.void
postReleaseUnitOfWork(SessionEvent event)
PUBLIC: This event is raised on the unit of work after release.void
postResumeUnitOfWork(SessionEvent event)
PUBLIC: This event is raised on the unit of work after resuming.void
postRollbackTransaction(SessionEvent event)
PUBLIC: This event is raised after a database transaction is rolledback.void
preBeginTransaction(SessionEvent event)
PUBLIC: This event is raised before a database transaction is started.void
preCalculateUnitOfWorkChangeSet(SessionEvent event)
PUBLIC: This event is raised after the commit has begun on the UnitOfWork but before the changes are calculated.void
preCommitTransaction(SessionEvent event)
PUBLIC: This event is raised before a database transaction is commited.void
preCommitUnitOfWork(SessionEvent event)
PUBLIC: This event is raised on the unit of work before commit.void
preDistributedMergeUnitOfWorkChangeSet(SessionEvent event)
PUBLIC: This even will be raised before a UnitOfWorkChangeSet has been merged When that changeSet has been received from a distributed sessionvoid
preExecuteCall(SessionEvent event)
PUBLIC: This event is raised before the execution of every call against the session.void
preExecuteQuery(SessionEvent event)
PUBLIC: This event is raised before the execution of every query against the session.void
preFlushUnitOfWork(SessionEvent event)
PUBLIC: This event is raised on the unit of work before a flush.void
preLogin(SessionEvent event)
PUBLIC: This Event is raised before the session logs in.void
preLogout(SessionEvent event)
PUBLIC: This Event is raised before the session logs out.void
preMergeUnitOfWorkChangeSet(SessionEvent event)
PUBLIC: This even will be raised before a UnitOfWorkChangeSet has been mergedvoid
prepareUnitOfWork(SessionEvent event)
PUBLIC: This event is raised on the unit of work after the SQL has been flushed, but the commit transaction has not been executed.void
preReleaseClientSession(SessionEvent event)
PUBLIC: This event is raised on the client session before releasing.void
preReleaseConnection(SessionEvent event)
PUBLIC: This event is raised on when using the server/client sessions.void
preReleaseExclusiveConnection(SessionEvent event)
PUBLIC: This event is fired just before a Client Session, with isolated data, releases its Exclusive Connectionvoid
preReleaseUnitOfWork(SessionEvent event)
PUBLIC: This event is raised on the unit of work before release.void
preRollbackTransaction(SessionEvent event)
PUBLIC: This event is raised before a database transaction is rolledback.
-
-
-
Method Detail
-
missingDescriptor
public void missingDescriptor(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the session if a descriptor is missing for a class being persisted. This can be used to lazy register the descriptor or set of descriptors.- Specified by:
missingDescriptor
in interfaceSessionEventListener
-
moreRowsDetected
public void moreRowsDetected(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the session after read object query detected more than a single row back from the database. The "result" of the event will be the call. Some applications may want to interpret this as an error or warning condition.- Specified by:
moreRowsDetected
in interfaceSessionEventListener
-
noRowsModified
public void noRowsModified(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the session after update or delete SQL has been sent to the database but a row count of zero was returned.- Specified by:
noRowsModified
in interfaceSessionEventListener
-
outputParametersDetected
public void outputParametersDetected(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the session after a stored procedure call has been executed that had output parameters. If the proc was used to override an insert/update/delete operation then EclipseLink will not be expecting any return value. This event mechanism allows for a listener to be registered before the proc is call to process the output values. The event "result" will contain a Record of the output values, and property "call" will be the StoredProcedureCall.- Specified by:
outputParametersDetected
in interfaceSessionEventListener
-
postAcquireClientSession
public void postAcquireClientSession(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the client session after creation/acquiring.- Specified by:
postAcquireClientSession
in interfaceSessionEventListener
-
postAcquireConnection
public void postAcquireConnection(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on when using the server/client sessions. This event is raised after a connection is acquired from a connection pool.- Specified by:
postAcquireConnection
in interfaceSessionEventListener
-
postAcquireExclusiveConnection
public void postAcquireExclusiveConnection(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised when a ClientSession, with Isolated data, acquires an exclusive connection. The event will contain the ClientSession that is being acquired. Users can set properties within the ConnectionPolicy of that ClientSession for access within this event.- Specified by:
postAcquireExclusiveConnection
in interfaceSessionEventListener
-
postAcquireUnitOfWork
public void postAcquireUnitOfWork(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the unit of work after creation/acquiring. This will be raised on nest units of work.- Specified by:
postAcquireUnitOfWork
in interfaceSessionEventListener
-
postBeginTransaction
public void postBeginTransaction(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised after a database transaction is started. It is not raised for nested transactions.- Specified by:
postBeginTransaction
in interfaceSessionEventListener
-
preCalculateUnitOfWorkChangeSet
public void preCalculateUnitOfWorkChangeSet(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised after the commit has begun on the UnitOfWork but before the changes are calculated.- Specified by:
preCalculateUnitOfWorkChangeSet
in interfaceSessionEventListener
-
postCalculateUnitOfWorkChangeSet
public void postCalculateUnitOfWorkChangeSet(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised after the commit has begun on the UnitOfWork and after the changes are calculated. The UnitOfWorkChangeSet, at this point, will contain changeSets without the version fields updated and without IdentityField type primary keys. These will be updated after the insert, or update, of the object- Specified by:
postCalculateUnitOfWorkChangeSet
in interfaceSessionEventListener
-
postCommitTransaction
public void postCommitTransaction(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised after a database transaction is commited. It is not raised for nested transactions.- Specified by:
postCommitTransaction
in interfaceSessionEventListener
-
postCommitUnitOfWork
public void postCommitUnitOfWork(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the unit of work after commit. This will be raised on nest units of work.- Specified by:
postCommitUnitOfWork
in interfaceSessionEventListener
-
postFlushUnitOfWork
public void postFlushUnitOfWork(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the unit of work after a flush.- Specified by:
postFlushUnitOfWork
in interfaceSessionEventListener
-
postDistributedMergeUnitOfWorkChangeSet
public void postDistributedMergeUnitOfWorkChangeSet(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This even will be raised after a UnitOfWorkChangeSet has been merged When that changeSet has been received from a distributed session- Specified by:
postDistributedMergeUnitOfWorkChangeSet
in interfaceSessionEventListener
-
postMergeUnitOfWorkChangeSet
public void postMergeUnitOfWorkChangeSet(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This even will be raised after a UnitOfWorkChangeSet has been merged- Specified by:
postMergeUnitOfWorkChangeSet
in interfaceSessionEventListener
-
postConnect
public void postConnect(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised after the session connects to the database. In a server session this event is raised on every new connection established.- Specified by:
postConnect
in interfaceSessionEventListener
-
postExecuteCall
public void postExecuteCall(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised after the execution of every call against the session. The event contains the call and call result. This differs from query execution in that the call has been translated.- Specified by:
postExecuteCall
in interfaceSessionEventListener
-
postExecuteQuery
public void postExecuteQuery(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised after the execution of every query against the session. The event contains the query and query result.- Specified by:
postExecuteQuery
in interfaceSessionEventListener
-
postReleaseClientSession
public void postReleaseClientSession(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the client session after releasing.- Specified by:
postReleaseClientSession
in interfaceSessionEventListener
-
postReleaseUnitOfWork
public void postReleaseUnitOfWork(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the unit of work after release. This will be raised on nest units of work.- Specified by:
postReleaseUnitOfWork
in interfaceSessionEventListener
-
postResumeUnitOfWork
public void postResumeUnitOfWork(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the unit of work after resuming. This occurs after pre/postCommit.- Specified by:
postResumeUnitOfWork
in interfaceSessionEventListener
-
postRollbackTransaction
public void postRollbackTransaction(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised after a database transaction is rolledback. It is not raised for nested transactions.- Specified by:
postRollbackTransaction
in interfaceSessionEventListener
-
preBeginTransaction
public void preBeginTransaction(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised before a database transaction is started. It is not raised for nested transactions.- Specified by:
preBeginTransaction
in interfaceSessionEventListener
-
preCommitTransaction
public void preCommitTransaction(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised before a database transaction is commited. It is not raised for nested transactions.- Specified by:
preCommitTransaction
in interfaceSessionEventListener
-
preCommitUnitOfWork
public void preCommitUnitOfWork(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the unit of work before commit. This will be raised on nest units of work.- Specified by:
preCommitUnitOfWork
in interfaceSessionEventListener
-
preFlushUnitOfWork
public void preFlushUnitOfWork(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the unit of work before a flush.- Specified by:
preFlushUnitOfWork
in interfaceSessionEventListener
-
preExecuteCall
public void preExecuteCall(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised before the execution of every call against the session. The event contains the call to be executed. This differs from query execution in that the call has been translated.- Specified by:
preExecuteCall
in interfaceSessionEventListener
-
preExecuteQuery
public void preExecuteQuery(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised before the execution of every query against the session. The event contains the query to be executed.- Specified by:
preExecuteQuery
in interfaceSessionEventListener
-
prepareUnitOfWork
public void prepareUnitOfWork(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the unit of work after the SQL has been flushed, but the commit transaction has not been executed. It is similar to the JTS prepare phase.- Specified by:
prepareUnitOfWork
in interfaceSessionEventListener
-
preReleaseClientSession
public void preReleaseClientSession(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the client session before releasing.- Specified by:
preReleaseClientSession
in interfaceSessionEventListener
-
preReleaseConnection
public void preReleaseConnection(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on when using the server/client sessions. This event is raised before a connection is released into a connection pool.- Specified by:
preReleaseConnection
in interfaceSessionEventListener
-
preReleaseExclusiveConnection
public void preReleaseExclusiveConnection(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is fired just before a Client Session, with isolated data, releases its Exclusive Connection- Specified by:
preReleaseExclusiveConnection
in interfaceSessionEventListener
-
preReleaseUnitOfWork
public void preReleaseUnitOfWork(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised on the unit of work before release. This will be raised on nest units of work.- Specified by:
preReleaseUnitOfWork
in interfaceSessionEventListener
-
preDistributedMergeUnitOfWorkChangeSet
public void preDistributedMergeUnitOfWorkChangeSet(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This even will be raised before a UnitOfWorkChangeSet has been merged When that changeSet has been received from a distributed session- Specified by:
preDistributedMergeUnitOfWorkChangeSet
in interfaceSessionEventListener
-
preMergeUnitOfWorkChangeSet
public void preMergeUnitOfWorkChangeSet(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This even will be raised before a UnitOfWorkChangeSet has been merged- Specified by:
preMergeUnitOfWorkChangeSet
in interfaceSessionEventListener
-
preRollbackTransaction
public void preRollbackTransaction(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This event is raised before a database transaction is rolledback. It is not raised for nested transactions.- Specified by:
preRollbackTransaction
in interfaceSessionEventListener
-
preLogin
public void preLogin(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This Event is raised before the session logs in.- Specified by:
preLogin
in interfaceSessionEventListener
-
postLogin
public void postLogin(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This Event is raised after the session logs in.- Specified by:
postLogin
in interfaceSessionEventListener
-
preLogout
public void preLogout(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This Event is raised before the session logs out.- Specified by:
preLogout
in interfaceSessionEventListener
-
postLogout
public void postLogout(SessionEvent event)
Description copied from interface:SessionEventListener
PUBLIC: This Event is raised after the session logs out.- Specified by:
postLogout
in interfaceSessionEventListener
-
-