mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3399 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
23 lines
430 B
Java
23 lines
430 B
Java
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();
|
|
}
|
|
|
|
}
|