KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > alfresco > web > bean > users > ContentUsersBean


1 package org.alfresco.web.bean.users;
2
3 import org.alfresco.web.bean.repository.Node;
4
5 /**
6  * Concrete implementation providing access to users of the current content/document.
7  *
8  * @author gavinc
9  */

10 public class ContentUsersBean extends UserMembersBean
11 {
12    /**
13     * @return The space to work against
14     */

15    public Node getNode()
16    {
17       return this.browseBean.getDocument();
18    }
19 }
20
Popular Tags