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 WebMethod {
09: String operationName() default "";
10:
11: String action() default "";
12:
13: boolean exclude() default false;
14: }
|