ALF-13441: WebDAV: activities should be raised/published

* WebDAV methods raise activities for file creation, modification, deletion.
* Repository property to enabled/disable activity feed generation is disabled by default.



git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@34748 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Matt Ward
2012-03-26 14:25:26 +00:00
parent bb8fd4c88b
commit b8e8b5f250
4 changed files with 28 additions and 9 deletions

View File

@@ -28,5 +28,13 @@ public interface WebDavService
* @return the URL of the node in webdav or "" if a URL cannot be built.
*/
public String getWebdavUrl(NodeRef nodeRef);
/**
* Determines whether activity post generation is enabled for WebDAV. When enabled,
* file creation, modification and deletion will create activities that can be viewed
* in the Share web client.
*
* @return true if activity generation is enabled.
*/
public boolean activitiesEnabled();
}