1 17 package org.alfresco.util.debug; 18 19 import org.alfresco.service.cmr.repository.NodeService; 20 import org.alfresco.service.cmr.repository.StoreRef; 21 import org.alfresco.util.BaseSpringTest; 22 23 26 public class OutputSpacesStoreSystemTest extends BaseSpringTest 27 { 28 31 public void testDumpSpacesStore() 32 { 33 NodeService nodeService = (NodeService)this.applicationContext.getBean("nodeService"); 34 StoreRef spacesStore = new StoreRef(StoreRef.PROTOCOL_WORKSPACE, "SpacesStore"); 35 System.out.println(NodeStoreInspector.dumpNodeStore(nodeService, spacesStore)); 36 } 37 } 38 | Popular Tags |