1 5 6 package javax.xml.ws; 7 8 import java.lang.annotation.Documented ; 9 import java.lang.annotation.Target ; 10 import java.lang.annotation.ElementType ; 11 import java.lang.annotation.Retention ; 12 import java.lang.annotation.RetentionPolicy ; 13 14 26 27 @Target ({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD}) 28 @Retention (RetentionPolicy.RUNTIME) 29 @Documented 30 public @interface WebServiceRef { 31 38 String name() default ""; 39 40 47 Class type() default Object .class ; 48 49 64 String mappedName() default ""; 65 66 71 Class value() default Object .class ; 72 73 78 String wsdlLocation() default ""; 79 } 80 | Popular Tags |