// we use reverse string tokens to reduce subtring correlated matches - a proper fix requires refactoring
this.lock = CoordinatorManager.getCoordinator().getLocker().acquireLock(lockResourceable, ureq.getIdentity(), lockToken);
VelocityContainer vc = (VelocityContainer) flc.getComponent();
if (!lock.isSuccess()) {
vc.contextPut("locked", Boolean.TRUE);
vc.contextPut("lockOwner", lock.getOwner().getName());
return;
} else {
vc.contextPut("locked", Boolean.FALSE);
}
}