1 5 6 package org.exoplatform.services.jcr.config; 7 8 14 15 public interface RepositoryServiceConfig { 16 17 WorkspaceEntry[] getWorkspaceEntries(); 18 19 WorkspaceEntry getWorkspaceEntry(String repositoryName, String name); 20 21 ContainerEntry[] getSupportedContainerEntries(); 22 23 ContainerEntry getContainerEntry(String name) throws RepositoryConfigurationException; 24 25 RepositoryEntry[] getRepositoryEntries(); 26 27 RepositoryEntry getRepositoryEntry(String name) throws RepositoryConfigurationException; 28 29 RepositoryManagerEntry[] getSupportedRepositoryManagerEntries(); 30 31 RepositoryManagerEntry getRepositoryManagerEntry(String name) throws RepositoryConfigurationException; 32 33 String getDefaultRepositoryName(); 34 } 35 | Popular Tags |