Interface TWSDLParserContext

All Known Implementing Classes:
TWSDLParserContextImpl

@Deprecated public interface TWSDLParserContext
Deprecated.
This interface is deprecated, will be removed in JAX-WS 2.2 RI.
Provides WSDL parsing context. It should be used by the WSDL extension handlers to register their namespaces so that it can be latter used by other extensions to resolve the namespaces.
Author:
Vivek Pandey
  • Method Details

    • push

      void push()
      Deprecated.
      Pushes the parsing context
    • pop

      void pop()
      Deprecated.
      pops the parsing context
    • getNamespaceURI

      String getNamespaceURI(String prefix)
      Deprecated.
      Gives the namespace URI for a given prefix
      Parameters:
      prefix - non-null prefix
      Returns:
      null of the prefix is not found
    • getPrefixes

      Iterable<String> getPrefixes()
      Deprecated.
      Gives the prefixes in the current context
    • getDefaultNamespaceURI

      String getDefaultNamespaceURI()
      Deprecated.
      Gives default namespace
      Returns:
      null if there is no default namespace declaration found
    • registerNamespaces

      void registerNamespaces(Element e)
      Deprecated.
      Registers naemespace declarations of a given Element found in the WSDL
      Parameters:
      e - Element whose namespace declarations need to be registered
    • getLocation

      Locator getLocation(Element e)
      Deprecated.
      gives the location information for the given Element.