1 21 package oracle.toplink.essentials.sessions; 23 24 25 34 public abstract class SessionEventAdapter implements SessionEventListener { 35 36 41 public void missingDescriptor(SessionEvent event) { 42 } 43 44 49 public void moreRowsDetected(SessionEvent event) { 50 } 51 52 57 public void noRowsModified(SessionEvent event) { 58 } 59 60 67 public void outputParametersDetected(SessionEvent event) { 68 } 69 70 74 public void postAcquireClientSession(SessionEvent event) { 75 } 76 77 82 public void postAcquireConnection(SessionEvent event) { 83 } 84 85 90 public void postAcquireExclusiveConnection(SessionEvent event) { 91 } 92 93 98 public void postAcquireUnitOfWork(SessionEvent event) { 99 } 100 101 106 public void postBeginTransaction(SessionEvent event) { 107 } 108 109 114 public void preCalculateUnitOfWorkChangeSet(SessionEvent event) { 115 } 116 117 125 public void postCalculateUnitOfWorkChangeSet(SessionEvent event) { 126 } 127 128 133 public void postCommitTransaction(SessionEvent event) { 134 } 135 136 141 public void postCommitUnitOfWork(SessionEvent event) { 142 } 143 144 149 public void postDistributedMergeUnitOfWorkChangeSet(SessionEvent event) { 150 } 151 152 156 public void postMergeUnitOfWorkChangeSet(SessionEvent event) { 157 } 158 159 164 public void postConnect(SessionEvent event) { 165 } 166 167 172 public void postExecuteQuery(SessionEvent event) { 173 } 174 175 179 public void postReleaseClientSession(SessionEvent event) { 180 } 181 182 187 public void postReleaseUnitOfWork(SessionEvent event) { 188 } 189 190 195 public void postResumeUnitOfWork(SessionEvent event) { 196 } 197 198 203 public void postRollbackTransaction(SessionEvent event) { 204 } 205 206 211 public void preBeginTransaction(SessionEvent event) { 212 } 213 214 219 public void preCommitTransaction(SessionEvent event) { 220 } 221 222 227 public void preCommitUnitOfWork(SessionEvent event) { 228 } 229 230 235 public void preExecuteQuery(SessionEvent event) { 236 } 237 238 243 public void prepareUnitOfWork(SessionEvent event) { 244 } 245 246 250 public void preReleaseClientSession(SessionEvent event) { 251 } 252 253 258 public void preReleaseConnection(SessionEvent event) { 259 } 260 261 266 public void preReleaseExclusiveConnection(SessionEvent event) { 267 } 268 269 274 public void preReleaseUnitOfWork(SessionEvent event) { 275 } 276 277 282 public void preDistributedMergeUnitOfWorkChangeSet(SessionEvent event) { 283 } 284 285 289 public void preMergeUnitOfWorkChangeSet(SessionEvent event) { 290 } 291 292 297 public void preRollbackTransaction(SessionEvent event) { 298 } 299 300 304 public void preLogin(SessionEvent event) { 305 } 306 307 311 public void postLogin(SessionEvent event) { 312 } 313 } 314 | Popular Tags |