Package com.sun.xml.ws.api.model.wsdl
Interface WSDLOutput
- All Superinterfaces:
WSDLExtensible,WSDLObject
- All Known Subinterfaces:
EditableWSDLOutput
- All Known Implementing Classes:
WSDLOutputImpl
Abstraction of wsdl:portType/wsdl:operation/wsdl:output
- Author:
- Vivek Pandey
-
Method Summary
Modifier and TypeMethodDescriptionGives the Action Message Addressing Property value forWSDLOutputmessage.Gives the WSDLMessage corresponding to wsdl:output@message
This method should not be called before the entire WSDLModel is built.getName()Gives the wsdl:portType/wsdl:operation/wsdl:output@nameGives the owningWSDLOperationgetQName()Gives qualified name of the wsdl:output 'name' attribute value.booleanChecks if the Action value is implicitly derived using the rules defined in WS-Addressing.Methods inherited from interface com.sun.xml.ws.api.model.wsdl.WSDLExtensible
addExtension, addNotUnderstoodExtension, areRequiredExtensionsUnderstood, getExtension, getExtensions, getExtensions, getNotUnderstoodExtensionsMethods inherited from interface com.sun.xml.ws.api.model.wsdl.WSDLObject
getLocation
-
Method Details
-
getName
String getName()Gives the wsdl:portType/wsdl:operation/wsdl:output@name -
getMessage
WSDLMessage getMessage()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.- Returns:
- Always returns null when called from inside WSDL extensions.
-
getAction
String getAction()Gives the Action Message Addressing Property value forWSDLOutputmessage.
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.- Returns:
- Action
-
getOperation
Gives the owningWSDLOperation -
getQName
Gives qualified name of the wsdl:output 'name' attribute value. If there is no name, then it computes the name from: wsdl:operation@name+"Response", which is local name ofWSDLOperation.getName()+ "Response"
The namespace uri is determined from the enclosing wsdl:operation. -
isDefaultAction
boolean isDefaultAction()Checks if the Action value is implicitly derived using the rules defined in WS-Addressing.- Returns:
- true if the Action value is implicitly derived using the rules defined in WS-Addressing.
-