1 24 package javax.jcr; 25 26 32 public interface NamespaceRegistry { 33 34 50 public void setMapping(String prefix, String uri) throws NamespaceException, RepositoryException; 51 52 57 public String [] getPrefixes(); 58 59 64 public String [] getURIs(); 65 66 72 public String getURI(String prefix) throws NamespaceException, RepositoryException; 73 74 80 public String getPrefix(String uri) throws NamespaceException, RepositoryException; 81 } 82 | Popular Tags |