8
|
1 |
/*
|
|
2 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
3 |
*
|
|
4 |
* This code is free software; you can redistribute it and/or modify it
|
|
5 |
* under the terms of the GNU General Public License version 2 only, as
|
|
6 |
* published by the Free Software Foundation. Sun designates this
|
|
7 |
* particular file as subject to the "Classpath" exception as provided
|
|
8 |
* by Sun in the LICENSE file that accompanied this code.
|
|
9 |
*
|
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
14 |
* accompanied this code).
|
|
15 |
*
|
|
16 |
* You should have received a copy of the GNU General Public License version
|
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
19 |
*
|
|
20 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
|
|
21 |
* CA 95054 USA or visit www.sun.com if you need additional information or
|
|
22 |
* have any questions.
|
|
23 |
*/
|
|
24 |
|
|
25 |
/*
|
|
26 |
* Copyright (c) 2004 by BEA Systems, Inc. All Rights Reserved.
|
|
27 |
*/
|
|
28 |
|
|
29 |
package javax.jws;
|
|
30 |
|
|
31 |
import java.lang.annotation.Retention;
|
|
32 |
import java.lang.annotation.RetentionPolicy;
|
|
33 |
import java.lang.annotation.Target;
|
|
34 |
import java.lang.annotation.ElementType;
|
|
35 |
|
|
36 |
/**
|
|
37 |
* Customizes the mapping of the return value to a WSDL part and XML element.
|
|
38 |
*
|
|
39 |
* @author Copyright (c) 2004 by BEA Systems, Inc. All Rights Reserved.
|
|
40 |
*/
|
|
41 |
@Retention(value = RetentionPolicy.RUNTIME)
|
|
42 |
@Target(value = {ElementType.METHOD})
|
|
43 |
public @interface WebResult
|
|
44 |
{
|
|
45 |
|
|
46 |
/**
|
|
47 |
* Name of return value.
|
|
48 |
* <p>
|
|
49 |
* If the operation is rpc style and @WebResult.partName has not been specified, this is the name of the wsdl:part
|
|
50 |
* representing the return value.
|
|
51 |
* <br>
|
|
52 |
* If the operation is document style or the return value maps to a header, this is the local name of the XML
|
|
53 |
* element representing the return value.
|
|
54 |
*
|
|
55 |
* @specdefault
|
|
56 |
* If the operation is document style and the parameter style is BARE, {@code @WebParam.operationName}+"Response".<br>
|
|
57 |
* Otherwise, "return."
|
|
58 |
*/
|
|
59 |
String name() default "";
|
|
60 |
|
|
61 |
/**
|
|
62 |
* The name of the wsdl:part representing this return value.
|
|
63 |
* <p>
|
|
64 |
* This is only used if the operation is rpc style, or if the operation is document style and the parameter style
|
|
65 |
* is BARE.
|
|
66 |
*
|
|
67 |
* @specdefault {@code @WebResult.name}
|
|
68 |
*
|
|
69 |
* @since 2.0
|
|
70 |
*/
|
|
71 |
String partName() default "";
|
|
72 |
|
|
73 |
/**
|
|
74 |
* The XML namespace for the return value.
|
|
75 |
* <p>
|
|
76 |
* Only used if the operation is document style or the return value maps to a header.
|
|
77 |
* If the target namespace is set to "", this represents the empty namespace.
|
|
78 |
*
|
|
79 |
* @specdefault
|
|
80 |
* If the operation is document style, the parameter style is WRAPPED, and the return value does not map to a
|
|
81 |
* header, the empty namespace.<br>
|
|
82 |
* Otherwise, the targetNamespace for the Web Service.
|
|
83 |
*/
|
|
84 |
String targetNamespace() default "";
|
|
85 |
|
|
86 |
/**
|
|
87 |
* If true, the result is pulled from a message header rather then the message body.
|
|
88 |
*
|
|
89 |
* @since 2.0
|
|
90 |
*/
|
|
91 |
boolean header() default false;
|
|
92 |
}
|