1 21 package oracle.toplink.essentials.sessions; 23 24 import java.util.*; 25 26 34 public interface SessionEventListener extends EventListener { 35 36 41 public void missingDescriptor(SessionEvent event); 42 43 48 public void moreRowsDetected(SessionEvent event); 49 50 55 public void noRowsModified(SessionEvent event); 56 57 64 public void outputParametersDetected(SessionEvent event); 65 66 70 public void postAcquireClientSession(SessionEvent event); 71 72 77 public void postAcquireConnection(SessionEvent event); 78 79 86 public void postAcquireExclusiveConnection(SessionEvent event); 87 88 93 public void postAcquireUnitOfWork(SessionEvent event); 94 95 100 public void postBeginTransaction(SessionEvent event); 101 102 107 public void preCalculateUnitOfWorkChangeSet(SessionEvent event); 108 109 117 public void postCalculateUnitOfWorkChangeSet(SessionEvent event); 118 119 124 public void postCommitTransaction(SessionEvent event); 125 126 131 public void postCommitUnitOfWork(SessionEvent event); 132 133 138 public void postConnect(SessionEvent event); 139 140 145 public void postExecuteQuery(SessionEvent event); 146 147 151 public void postReleaseClientSession(SessionEvent event); 152 153 158 public void postReleaseUnitOfWork(SessionEvent event); 159 160 165 public void postResumeUnitOfWork(SessionEvent event); 166 167 172 public void postRollbackTransaction(SessionEvent event); 173 174 179 public void postDistributedMergeUnitOfWorkChangeSet(SessionEvent event); 180 181 185 public void postMergeUnitOfWorkChangeSet(SessionEvent event); 186 187 192 public void preBeginTransaction(SessionEvent event); 193 194 199 public void preCommitTransaction(SessionEvent event); 200 201 206 public void preCommitUnitOfWork(SessionEvent event); 207 208 213 public void preExecuteQuery(SessionEvent event); 214 215 220 public void prepareUnitOfWork(SessionEvent event); 221 222 226 public void preReleaseClientSession(SessionEvent event); 227 228 233 public void preReleaseConnection(SessionEvent event); 234 235 240 public void preReleaseExclusiveConnection(SessionEvent event); 241 242 247 public void preReleaseUnitOfWork(SessionEvent event); 248 249 254 public void preRollbackTransaction(SessionEvent event); 255 256 261 public void preDistributedMergeUnitOfWorkChangeSet(SessionEvent event); 262 263 267 public void preMergeUnitOfWorkChangeSet(SessionEvent event); 268 269 273 public void preLogin(SessionEvent event); 274 275 279 public void postLogin(SessionEvent event); 280 } 281 | Popular Tags |