Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)

84951: Merged PLATFORM1 (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud)
      83689: ACE-2248 "Move Events and Messaging Framework into Core"
      Fix up side effects of changes to messaging and events services code


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@85268 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2014-09-20 09:25:14 +00:00
parent e2382dbb42
commit 9c0de55e32

View File

@@ -81,8 +81,10 @@ import org.springframework.extensions.webscripts.WebScriptRequest;
eventPublisher.publishEvent(new EventPreparator(){
@Override
public Event prepareEvent(String user, String networkId, String transactionId)
{
return new RepositoryEventImpl("login", transactionId, networkId, new Date().getTime(), username);
{
// TODO need to fix up to pass correct seqNo and alfrescoClientId
return new RepositoryEventImpl(-1l, "login", transactionId, networkId, new Date().getTime(),
username, null);
}
});