mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Fixed AWC-407 Added helper to Application to get client config git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2114 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
20 lines
392 B
Java
20 lines
392 B
Java
package org.alfresco.web.bean.users;
|
|
|
|
import org.alfresco.web.bean.repository.Node;
|
|
|
|
/**
|
|
* Concrete implementation providing access to users of the current content/document.
|
|
*
|
|
* @author gavinc
|
|
*/
|
|
public class ContentUsersBean extends UserMembersBean
|
|
{
|
|
/**
|
|
* @return The space to work against
|
|
*/
|
|
public Node getNode()
|
|
{
|
|
return this.browseBean.getDocument();
|
|
}
|
|
}
|