Subversion 1.6.16
|
A lock object, for client & server to share. More...
#include <svn_types.h>
Data Fields | |
const char * | path |
the path this lock applies to | |
const char * | token |
unique URI representing lock | |
const char * | owner |
the username which owns the lock | |
const char * | comment |
(optional) description of lock | |
svn_boolean_t | is_dav_comment |
was comment made by generic DAV client? | |
apr_time_t | creation_date |
when lock was made | |
apr_time_t | expiration_date |
(optional) when lock will expire; If value is 0, lock will never expire. |
A lock object, for client & server to share.
A lock represents the exclusive right to add, delete, or modify a path. A lock is created in a repository, wholly controlled by the repository. A "lock-token" is the lock's UUID, and can be used to learn more about a lock's fields, and or/make use of the lock. Because a lock is immutable, a client is free to not only cache the lock-token, but the lock's fields too, for convenience.
Note that the 'is_dav_comment' field is wholly ignored by every library except for mod_dav_svn. The field isn't even marshalled over the network to the client. Assuming lock structures are created with apr_pcalloc(), a default value of 0 is universally safe.
Definition at line 918 of file svn_types.h.
apr_time_t svn_lock_t::expiration_date |
(optional) when lock will expire; If value is 0, lock will never expire.
Definition at line 926 of file svn_types.h.