302303304305306307308309310311312
Resource resource = null; Lock lock = getLock( key ); try { lock.acquire(); } catch ( InterruptedException ie ) { throw new ResourceException( ie ); }
394395396397398399400401402403404
294295296297298299300301302303304
Resource resource = null; Lock lock = getLock(key); try { lock.acquire( ); } catch ( InterruptedException e ) { throw new ResourceException( e ); }
386387388389390391392393394395396
Resource resource = null; Lock lock = getLock(key); try { lock.acquire( ); } catch ( InterruptedException ie ) { throw new ResourceException( ie ); }
292293294295296297298299300301302
384385386387388389390391392393394
873874875876877878879880881882883
throws ResourceException { Lock lock = m_lockManager.getLock( getNonNullKey( resourceId ) ); try { lock.acquire( ); } catch ( InterruptedException ie ) { throw new ResourceException( ie ); }
882883884885886887888889890891892