LockFailedException
160161162163164165166167168
OTMConn.deletePersistent(obj); invoker.afterDeletePersistent(obj); } catch (LockingException e) { throw new LockFailedException(e.toString(), e); } }
296297298299300301302303
invoker.afterLookup(obj); return obj; } catch (LockingException e) { throw new LockFailedException(e.toString(), e); } }
334335336337338339340341
453454455456457458459460461
Identity oid = OTMConn.getIdentity(obj); OTMConn.invalidate(oid); } catch (LockingException e) { throw new LockFailedException(e.toString(), e); } }
467468469470471472473474
OTMConn.invalidateAll(); } catch (LockingException e) { throw new LockFailedException(e.toString(), e); } }
487488489490491492493494495
{ OTMConn.lockForWrite(obj); } catch (LockingException e) { throw new LockFailedException(e.toString(), e); } }
510511512513514515516517518
OTMConn.makePersistent(obj); invoker.afterMakePersistent(obj); } catch (LockingException e) { throw new LockFailedException(e.toString(), e); } }
600601602603604605606607608
OTMConn.invalidate(oid); } } catch (LockingException e) { throw new LockFailedException(e.toString(), e); } }
621622623624625626627628629