/**
  * Releases the lock
  * @return boolean TRUE on success, FALSE otherwise
  */
 public function release()
 {
     if ($this->lockStrategy instanceof LockStrategyInterface) {
         return $this->lockStrategy->release();
     }
     return true;
 }