blob: 6ba6bd268064a41f3aa4949d0874705f90dfa292 [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.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface HandlerChain {
String file();
String name() default "";
}