Package com.sun.xml.ws.api.model.wsdl
Interface WSDLPart
-
- All Superinterfaces:
WSDLObject
- All Known Subinterfaces:
EditableWSDLPart
- All Known Implementing Classes:
WSDLPartImpl
public interface WSDLPart extends WSDLObject
Abstracts wsdl:part after applying binding information from wsdl:binding.- Author:
- Vivek Pandey
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParameterBindinggetBinding()Gets the wsdl:part binding as seen thru wsdl:bindingWSDLPartDescriptorgetDescriptor()Gives the XML Schema descriptor referenced using either wsdl:part@element or wsdl:part@type.intgetIndex()Index value is as the order in which the wsdl:part appears inside the input or output wsdl:message.StringgetName()Gets wsdl:part@name attribute value.-
Methods inherited from interface com.sun.xml.ws.api.model.wsdl.WSDLObject
getLocation
-
-
-
-
Method Detail
-
getName
String getName()
Gets wsdl:part@name attribute value.
-
getBinding
ParameterBinding getBinding()
Gets the wsdl:part binding as seen thru wsdl:binding
-
getIndex
int getIndex()
Index value is as the order in which the wsdl:part appears inside the input or output wsdl:message.- Returns:
- n where n >= 0
-
getDescriptor
WSDLPartDescriptor getDescriptor()
Gives the XML Schema descriptor referenced using either wsdl:part@element or wsdl:part@type.
-
-