Interface NamespaceDAO

All Superinterfaces:
NamespacePrefixResolver
All Known Implementing Classes:
DictionaryDAOImpl

public interface NamespaceDAO extends NamespacePrefixResolver
Namespace DAO Interface. This DAO is responsible for retrieving and creating Namespace definitions.
Author:
David Caruana
  • Method Details

    • addURI

      void addURI(String uri)
      Add a namespace URI
      Parameters:
      uri - the namespace uri to add
    • removeURI

      void removeURI(String uri)
      Remove the specified URI
      Parameters:
      uri - the uri to remove
    • addPrefix

      void addPrefix(String prefix, String uri)
      Add a namespace prefix
      Parameters:
      prefix - the prefix
      uri - the uri to prefix
    • removePrefix

      void removePrefix(String prefix)
      Remove a namspace prefix
      Parameters:
      prefix - the prefix to remove