Package javax.wsdl.extensions.soap12
Interface SOAP12Operation
- All Superinterfaces:
ExtensibilityElement
,java.io.Serializable
- All Known Implementing Classes:
SOAP12OperationImpl
Based on javax.wsdl.extensions.SOAPOperation.
-
Method Summary
Modifier and TypeMethodDescriptionjava.lang.Boolean
Indicates whether the SOAP Action is required for this operation.java.lang.String
Get the value of the SOAP action attribute.java.lang.String
getStyle()
Get the style for this SOAP operation.void
setSoapActionRequired
(java.lang.Boolean soapActionRequired) Specify whether the SOAP Action is required for this operation.void
setSoapActionURI
(java.lang.String soapActionURI) Set the SOAP action attribute.void
setStyle
(java.lang.String style) Set the style for this SOAP operation.Methods inherited from interface javax.wsdl.extensions.ExtensibilityElement
getElementType, getRequired, setElementType, setRequired
-
Method Details
-
setSoapActionURI
void setSoapActionURI(java.lang.String soapActionURI) Set the SOAP action attribute.- Parameters:
soapActionURI
- the desired value of the SOAP action header for this operation.
-
getSoapActionURI
java.lang.String getSoapActionURI()Get the value of the SOAP action attribute.- Returns:
- the SOAP action attribute's value
-
setSoapActionRequired
void setSoapActionRequired(java.lang.Boolean soapActionRequired) Specify whether the SOAP Action is required for this operation.- Parameters:
soapActionRequired
- true if the SOAP Action is required, otherwise false.
-
getSoapActionRequired
java.lang.Boolean getSoapActionRequired()Indicates whether the SOAP Action is required for this operation.- Returns:
- true if the SOAP action is required, otherwise false.
-
setStyle
void setStyle(java.lang.String style) Set the style for this SOAP operation.- Parameters:
style
- the desired style
-
getStyle
java.lang.String getStyle()Get the style for this SOAP operation.
-