mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
ALF-14123: Exception thrown on clean Alfresco install when accessing node details
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@36433 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -313,9 +313,9 @@ public class WebDAVServlet extends HttpServlet
|
|||||||
|
|
||||||
AuthenticationService authService = (AuthenticationService) context.getBean("authenticationService");
|
AuthenticationService authService = (AuthenticationService) context.getBean("authenticationService");
|
||||||
|
|
||||||
NodeService nodeService = (NodeService) context.getBean("NodeService");
|
nodeService = (NodeService) context.getBean("NodeService");
|
||||||
SearchService searchService = (SearchService) context.getBean("SearchService");
|
searchService = (SearchService) context.getBean("SearchService");
|
||||||
NamespaceService namespaceService = (NamespaceService) context.getBean("NamespaceService");
|
namespaceService = (NamespaceService) context.getBean("NamespaceService");
|
||||||
ActivityService activityService = (ActivityService) context.getBean("activityService");
|
ActivityService activityService = (ActivityService) context.getBean("activityService");
|
||||||
PersonService personService = serviceRegistry.getPersonService();
|
PersonService personService = serviceRegistry.getPersonService();
|
||||||
singletonCache = (SimpleCache<String, NodeRef>)context.getBean("immutableSingletonCache");
|
singletonCache = (SimpleCache<String, NodeRef>)context.getBean("immutableSingletonCache");
|
||||||
|
Reference in New Issue
Block a user