Esempio n. 1
0
 /**
  * Serves MOVE requests.
  *
  * The method receives a {@link ezcWebdavMoveRequest} objects containing
  * all relevant information obout the clients request and will return an
  * instance of {@link ezcWebdavErrorResponse} on error or {@link
  * ezcWebdavMoveResponse} on success. If only some operations failed, this
  * method may return an instance of {@link ezcWebdavMultistatusResponse}.
  *
  * This method acquires the internal lock of the backend, dispatches to
  * {@link ezcWebdavSimpleBackend} to perform the operation and releases the
  * lock afterwards.
  * 
  * @param ezcWebdavMoveRequest $request 
  * @return ezcWebdavResponse
  */
 public function move(ezcWebdavMoveRequest $request)
 {
     $this->acquireLock();
     $return = parent::move($request);
     $this->freeLock();
     return $return;
 }