01: package javax.jws;
02:
03: import java.lang.annotation.*;
04: import static java.lang.annotation.ElementType.*;
05:
06: @Retention(value=RetentionPolicy.RUNTIME)
07: @Target({METHOD})
08: public @interface WebResult {
09:
10: String name() default "";
11:
12: String partName() default "";
13:
14: String targetNamespace() default "";
15:
16: boolean header() default false;
17: }
|