Package org.apache.jackrabbit.jcr2spi
Interface NamespaceStorage
-
- All Known Implementing Classes:
WorkspaceManager
public interface NamespaceStorageNamespaceStorage...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetPrefix(String uri)Map<String,String>getRegisteredNamespaces()StringgetURI(String prefix)voidregisterNamespace(String prefix, String uri)voidunregisterNamespace(String uri)
-
-
-
Method Detail
-
getRegisteredNamespaces
Map<String,String> getRegisteredNamespaces() throws RepositoryException
- Throws:
RepositoryException
-
getPrefix
String getPrefix(String uri) throws NamespaceException, RepositoryException
-
getURI
String getURI(String prefix) throws NamespaceException, RepositoryException
-
registerNamespace
void registerNamespace(String prefix, String uri) throws NamespaceException, UnsupportedRepositoryOperationException, AccessDeniedException, RepositoryException
-
unregisterNamespace
void unregisterNamespace(String uri) throws NamespaceException, UnsupportedRepositoryOperationException, AccessDeniedException, RepositoryException
-
-