Package com.sun.xml.ws.wsdl
Class OperationDispatcher
- java.lang.Object
-
- com.sun.xml.ws.wsdl.OperationDispatcher
-
public class OperationDispatcher extends Object
This class abstracts the process of identifying the wsdl operation from a SOAP Message request. This is primarily for dispatching the request messages to an endpoint method. Different implementations ofWSDLOperationFinder
are used underneath to identify the wsdl operation based on if AddressingFeature is enabled or not.- Author:
- Rama Pulavarthi
-
-
Constructor Summary
Constructors Constructor Description OperationDispatcher(WSDLPort wsdlModel, WSBinding binding, SEIModel seiModel)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description WSDLOperationMapping
getWSDLOperationMapping(Packet request)
QName
getWSDLOperationQName(Packet request)
Deprecated.use getWSDLOperationMapping(Packet request)
-
-
-
Method Detail
-
getWSDLOperationQName
@NotNull public QName getWSDLOperationQName(Packet request) throws DispatchException
Deprecated.use getWSDLOperationMapping(Packet request)- Parameters:
request
- Packet- Returns:
- QName of the wsdl operation.
- Throws:
DispatchException
- if a unique operartion cannot be associated with this packet.
-
getWSDLOperationMapping
@NotNull public WSDLOperationMapping getWSDLOperationMapping(Packet request) throws DispatchException
- Throws:
DispatchException
-
-