mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
Merged BRANCHES/DEV/CLOUD1_SP to HEAD:
39916: CLOUD-28: cloud SPP raises activity posts for PUT, DELETE. Partial fix for ALF-15557 (Sharepoint subsystem to create activity records) - the commit should have been split between core changes and cloud-specific changes (CLOUD1_SP branch). This is bringing in the core changes from 39916. Further changes will be made to fully implement Jira ALF-15557. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@40851 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -44,11 +44,18 @@ public class ActivityPosterImpl implements ActivityPoster
|
|||||||
private static final String FILE_UPDATED = "org.alfresco.documentlibrary.file-updated";
|
private static final String FILE_UPDATED = "org.alfresco.documentlibrary.file-updated";
|
||||||
private static final String FILE_DELETED = "org.alfresco.documentlibrary.file-deleted";
|
private static final String FILE_DELETED = "org.alfresco.documentlibrary.file-deleted";
|
||||||
private static final String APP_TOOL = "WebDAV";
|
private static final String APP_TOOL = "WebDAV";
|
||||||
private final ActivityService activityService;
|
private ActivityService activityService;
|
||||||
private final NodeService nodeService;
|
private NodeService nodeService;
|
||||||
private final PersonService personService;
|
private PersonService personService;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default constructor.
|
||||||
|
*/
|
||||||
|
public ActivityPosterImpl()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor
|
* Constructor
|
||||||
*
|
*
|
||||||
@@ -193,4 +200,20 @@ public class ActivityPosterImpl implements ActivityPoster
|
|||||||
|
|
||||||
return new Pair<String, String>(firstName, lastName);
|
return new Pair<String, String>(firstName, lastName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void setActivityService(ActivityService activityService)
|
||||||
|
{
|
||||||
|
this.activityService = activityService;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setNodeService(NodeService nodeService)
|
||||||
|
{
|
||||||
|
this.nodeService = nodeService;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPersonService(PersonService personService)
|
||||||
|
{
|
||||||
|
this.personService = personService;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user