@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface WebResult
Modifier and Type | Optional Element and Description |
---|---|
boolean |
header
If true, the result is pulled from a message header rather then the message body.
|
java.lang.String |
name
Name of return value.
|
java.lang.String |
partName
The name of the wsdl:part representing this return value.
|
java.lang.String |
targetNamespace
The XML namespace for the return value.
|
public abstract java.lang.String name
If the operation is rpc style and @WebResult.partName has not been specified, this is the name of the wsdl:part
representing the return value.
If the operation is document style or the return value maps to a header, this is the local name of the XML
element representing the return value.
public abstract java.lang.String partName
This is only used if the operation is rpc style, or if the operation is document style and the parameter style is BARE.