ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
LockInfo.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Sabre\DAV\Locks;
4 
15 class LockInfo {
16 
20  const SHARED = 1;
21 
25  const EXCLUSIVE = 2;
26 
30  const TIMEOUT_INFINITE = -1;
31 
37  public $owner;
38 
44  public $token;
45 
51  public $timeout;
52 
58  public $created;
59 
65  public $scope = self::EXCLUSIVE;
66 
70  public $depth = 0;
71 
78  public $uri;
79 
80 }
const EXCLUSIVE
An exclusive lock.
Definition: LockInfo.php:25
const SHARED
A shared lock.
Definition: LockInfo.php:20
$depth
Depth of lock, can be 0 or Sabre::DEPTH_INFINITY.
Definition: LockInfo.php:70
const TIMEOUT_INFINITE
A never expiring timeout.
Definition: LockInfo.php:30
LockInfo class.
Definition: LockInfo.php:15