Workflow checkpoint.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3399 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2006-07-25 20:56:42 +00:00
parent 62c0ecf132
commit d8deab68eb
54 changed files with 4718 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
package org.jbpm.webapp.bean;
import org.alfresco.service.cmr.security.AuthenticationService;
public class AlfrescoUserBean extends UserBean
{
AuthenticationService authService;
public void setAuthenticationService(AuthenticationService authService)
{
this.authService = authService;
}
@Override
public String getUserName()
{
return authService.getCurrentUserName();
}
}