| com.sun.xml.ws.api.model.wsdl.WSDLOutput
All known Subclasses: com.sun.xml.ws.model.wsdl.WSDLOutputImpl,
WSDLOutput | public interface WSDLOutput extends WSDLObject,WSDLExtensible(Code) | | Abstraction of wsdl:portType/wsdl:operation/wsdl:output
author: Vivek Pandey |
Method Summary | |
String | getAction() Gives the Action Message Addressing Property value for
this message.
This method provides the correct value irrespective of
whether the Action is explicitly specified in the WSDL or
implicitly derived using the rules defined in WS-Addressing. | WSDLMessage | getMessage() Gives the WSDLMessage corresponding to wsdl:output@message
This method should not be called before the entire WSDLModel is built. | String | getName() |
getAction | String getAction()(Code) | | Gives the Action Message Addressing Property value for
this message.
This method provides the correct value irrespective of
whether the Action is explicitly specified in the WSDL or
implicitly derived using the rules defined in WS-Addressing.
Action |
getMessage | WSDLMessage getMessage()(Code) | | Gives the WSDLMessage corresponding to wsdl:output@message
This method should not be called before the entire WSDLModel is built. Basically after the WSDLModel is built
all the references are resolve in a post processing phase. IOW, the WSDL extensions should
not call this method.
Always returns null when called from inside WSDL extensions. |
getName | String getName()(Code) | | Gives the wsdl:portType/wsdl:operation/wsdl:output@name
|
|
|