Files
alfresco-community-repo/source/java/org/jbpm/webapp/bean/AlfrescoUserBean.java
David Caruana d8deab68eb Workflow checkpoint.
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3399 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2006-07-25 20:56:42 +00:00

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();
}
}