this.trace("Acquiring %slock on %s", newLock ? "new " : "", id);
try
{
LockResult result = this.lockManager.lock(this.getBeanLockKey(id), this.cache.getConfiguration().getLockAcquisitionTimeout(), newLock);
this.trace("Lock acquired (%s) on %s", result, id);
return result;
}
catch (TimeoutException e)
{