Package com.sun.xml.ws.api.model
Interface WSDLOperationMapping
-
public interface WSDLOperationMapping
WSDLOperationMapping represents the mapping between a WSDL operation and a JavaMethod. This is intended to be the output of resolving a Packet to the targeting WSDL operation.- Author:
- [email protected]
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JavaMethod
getJavaMethod()
QName
getOperationName()
WSDL1.1 allows operation overloading on the operation name; the operation name should NOT be used as identifier of the operation.WSDLBoundOperation
getWSDLBoundOperation()
-
-
-
Method Detail
-
getWSDLBoundOperation
WSDLBoundOperation getWSDLBoundOperation()
-
getJavaMethod
JavaMethod getJavaMethod()
-
getOperationName
QName getOperationName()
WSDL1.1 allows operation overloading on the operation name; the operation name should NOT be used as identifier of the operation.
-
-