01: /*
02: * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
03: * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
04: */
05:
06: package javax.xml.ws;
07:
08: import java.lang.annotation.Documented;
09: import java.lang.annotation.Target;
10: import java.lang.annotation.Retention;
11: import static java.lang.annotation.ElementType.*;
12: import static java.lang.annotation.RetentionPolicy.*;
13:
14: /**
15: * The <code>WebServiceRefs</code> annotation allows
16: * multiple web service references to be declared at the
17: * class level.
18: *
19: * @see javax.xml.ws.WebServiceRef
20: * @since 2.0
21: */
22:
23: @Documented
24: @Retention(RUNTIME)
25: @Target(TYPE)
26: public @interface WebServiceRefs {
27: /**
28: * Array used for multiple web service reference declarations.
29: */
30: WebServiceRef[] value();
31: }
|