Package com.sun.tools.ws.api.wsdl
Interface TWSDLExtensible
-
- All Known Subinterfaces:
TWSDLOperation
- All Known Implementing Classes:
Binding,BindingFault,BindingInput,BindingOperation,BindingOutput,Definitions,Fault,Input,MIMEPart,Operation,Output,Port,PortType,Service,Types
public interface TWSDLExtensibleDeprecated.This interface is deprecated, will be removed in JAX-WS 2.2 RI.A WSDL element or attribute that can be extended.- Author:
- Vivek Pandey
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidaddExtension(TWSDLExtension e)Deprecated.AnTWSDLExtensionHandlerwill call this method to add anTWSDLExtensionobjectIterable<? extends TWSDLExtension>extensions()Deprecated.Gives iterator overTWSDLExtensionsStringgetNamespaceURI()Deprecated.Gives namespace URI of a wsdl extensibility element.StringgetNameValue()Deprecated.Gives the wsdl extensiblity element's name attribute value.TWSDLExtensiblegetParent()Deprecated.Gives the parent of a wsdl extensibility element.QNamegetWSDLElementName()Deprecated.Gives the WSDL element or WSDL extensibility element name
-
-
-
Method Detail
-
getNameValue
String getNameValue()
Deprecated.Gives the wsdl extensiblity element's name attribute value. It can be null as @name on some of the wsdl extensibility elements are optinal such as wsdl:input
-
getNamespaceURI
String getNamespaceURI()
Deprecated.Gives namespace URI of a wsdl extensibility element.
-
getWSDLElementName
QName getWSDLElementName()
Deprecated.Gives the WSDL element or WSDL extensibility element name
-
addExtension
void addExtension(TWSDLExtension e)
Deprecated.AnTWSDLExtensionHandlerwill call this method to add anTWSDLExtensionobject- Parameters:
e- non-null extension object
-
extensions
Iterable<? extends TWSDLExtension> extensions()
Deprecated.Gives iterator overTWSDLExtensions
-
getParent
TWSDLExtensible getParent()
Deprecated.Gives the parent of a wsdl extensibility element.
Here, theFor example, <wsdl:portType> <wsdl:operation> ...TWSDLExtensiblerepresenting wsdl:operation's parent would be wsdl:portType- Returns:
- null if the
TWSDLExtensiblehas no parent, root of wsdl document - wsdl:definition.
-
-