Merged BRANCHES/DEV/CLOUD1-BUG-FIX to HEAD:

42847: CLOUD-794: "Activities should be posted for CMIS (to enable both Public API + Mobile clients)"


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@42869 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jan Vonka
2012-10-19 14:14:18 +00:00
parent 7bb82f5143
commit 441926f1f6
3 changed files with 97 additions and 57 deletions

View File

@@ -18,6 +18,7 @@
*/
package org.alfresco.opencmis;
import org.alfresco.opencmis.ActivityPosterImpl.ActivityInfo;
import org.alfresco.service.cmr.model.FileInfo;
import org.alfresco.service.cmr.repository.NodeRef;
@@ -32,12 +33,7 @@ public interface ActivityPoster
void postFileUpdated(NodeRef nodeRef);
void postFileDeleted(
String parentPath,
NodeRef parentNodeRef,
NodeRef nodeRef,
String siteId,
String fileName);
void postFileDeleted(ActivityInfo activityInfo);
String getParentPath(NodeRef nodeRef);
ActivityInfo getActivityInfo(NodeRef nodeRef);
}