mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
22
source/java/org/jbpm/webapp/bean/AlfrescoUserBean.java
Normal file
22
source/java/org/jbpm/webapp/bean/AlfrescoUserBean.java
Normal 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();
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user