From 3e965f0111861cea512e7f52e1337c4eda589eac Mon Sep 17 00:00:00 2001 From: Alan Davis Date: Thu, 18 Sep 2014 17:14:35 +0000 Subject: [PATCH] Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud) 83859: Merged KEVINR1 (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud) 83356: ACE-2644 - Administrator Node Browser (in-process) functional parity of Explorer Node info, properties list, properties value rendering, parents list, parent navigation. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@84581 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../slingshot/web/scripts/NodeBrowserScript.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/source/java/org/alfresco/slingshot/web/scripts/NodeBrowserScript.java b/source/java/org/alfresco/slingshot/web/scripts/NodeBrowserScript.java index 7c4c8b6140..9d83d3c771 100644 --- a/source/java/org/alfresco/slingshot/web/scripts/NodeBrowserScript.java +++ b/source/java/org/alfresco/slingshot/web/scripts/NodeBrowserScript.java @@ -90,7 +90,7 @@ public class NodeBrowserScript extends DeclarativeWebScript this.transactionService = transactionService; } - private TransactionService getTransactionService() + protected TransactionService getTransactionService() { return transactionService; } @@ -103,7 +103,7 @@ public class NodeBrowserScript extends DeclarativeWebScript this.nodeService = nodeService; } - private NodeService getNodeService() + protected NodeService getNodeService() { return nodeService; } @@ -116,7 +116,7 @@ public class NodeBrowserScript extends DeclarativeWebScript this.searchService = searchService; } - private SearchService getSearchService() + protected SearchService getSearchService() { return searchService; } @@ -129,7 +129,7 @@ public class NodeBrowserScript extends DeclarativeWebScript this.dictionaryService = dictionaryService; } - private DictionaryService getDictionaryService() + protected DictionaryService getDictionaryService() { return dictionaryService; } @@ -142,7 +142,7 @@ public class NodeBrowserScript extends DeclarativeWebScript this.namespaceService = namespaceService; } - private NamespaceService getNamespaceService() + protected NamespaceService getNamespaceService() { return namespaceService; } @@ -155,7 +155,7 @@ public class NodeBrowserScript extends DeclarativeWebScript this.permissionService = permissionService; } - private PermissionService getPermissionService() + protected PermissionService getPermissionService() { return permissionService; } @@ -165,7 +165,7 @@ public class NodeBrowserScript extends DeclarativeWebScript this.ownableService = ownableService; } - public OwnableService getOwnableService() + protected OwnableService getOwnableService() { return ownableService; }