1 17 package org.alfresco.service.namespace; 18 19 import java.util.Collection ; 20 21 27 public interface NamespacePrefixResolver 28 { 29 36 public String getNamespaceURI(String prefix) 37 throws NamespaceException; 38 39 46 public Collection <String > getPrefixes(String namespaceURI) 47 throws NamespaceException; 48 49 54 Collection <String > getPrefixes(); 55 56 61 Collection <String > getURIs(); 62 63 } 64 | Popular Tags |