blob: f461c3692b82cef684afa12ca0df76bd16253411 [file] [log] [blame]
/**
*
*/
package javax.jws;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target (ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface WebResult {
String name() default "return";
String targetNamespace() default "";
boolean header() default false;
String partName() default "";
}