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({TYPE})
08: public @interface WebService {
09: String name() default "";
10:
11: String targetNamespace() default "";
12:
13: String serviceName() default "";
14:
15: String portName() default "";
16:
17: String wsdlLocation() default "";
18:
19: String endpointInterface() default "";
20: }
|