. Added Repository and Patch system properties to System Info admin page in the web-client

. For extensibility - changed all service references in appropriate JSF Managed beans from "private" to "protected"

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2426 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2006-02-17 11:41:23 +00:00
parent 3af09722de
commit 9cfa618c76
24 changed files with 240 additions and 84 deletions

View File

@@ -84,33 +84,33 @@ public class ForumsBean implements IContextListener, NodeEventListener
private static final String PAGE_NAME_TOPIC = "topic";
/** The NodeService to be used by the bean */
private NodeService nodeService;
protected NodeService nodeService;
/** The ContentService to be used by the bean */
private ContentService contentService;
protected ContentService contentService;
/** The DictionaryService bean reference */
private DictionaryService dictionaryService;
protected DictionaryService dictionaryService;
/** The SearchService bean reference. */
private SearchService searchService;
protected SearchService searchService;
/** The NamespaceService bean reference. */
private NamespaceService namespaceService;
protected NamespaceService namespaceService;
/** The browse bean */
private BrowseBean browseBean;
protected BrowseBean browseBean;
/** The NavigationBean bean reference */
private NavigationBean navigator;
protected NavigationBean navigator;
/** Views configuration object */
private ViewsConfigElement viewsConfig = null;
protected ViewsConfigElement viewsConfig = null;
/** Component references */
private UIRichList forumsRichList;
private UIRichList forumRichList;
private UIRichList topicRichList;
protected UIRichList forumsRichList;
protected UIRichList forumRichList;
protected UIRichList topicRichList;
/** Node lists */
private List<Node> forums;