Package com.sun.tools.ws.api.wsdl
Interface TWSDLParserContext
-
- All Known Implementing Classes:
TWSDLParserContextImpl
public interface TWSDLParserContextDeprecated.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 Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetDefaultNamespaceURI()Deprecated.Gives default namespaceLocatorgetLocation(Element e)Deprecated.gives the location information for the given Element.StringgetNamespaceURI(String prefix)Deprecated.Gives the namespace URI for a given prefixIterable<String>getPrefixes()Deprecated.Gives the prefixes in the current contextvoidpop()Deprecated.pops the parsing contextvoidpush()Deprecated.Pushes the parsing contextvoidregisterNamespaces(Element e)Deprecated.Registers naemespace declarations of a givenElementfound in the WSDL
-
-
-
Method Detail
-
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
-
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 givenElementfound in the WSDL- Parameters:
e-Elementwhose namespace declarations need to be registered
-
-