KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > xml > ws > WebServiceRefs


1 /*
2  * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
3  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4  */

5
6 package javax.xml.ws;
7
8 import java.lang.annotation.Documented JavaDoc;
9 import java.lang.annotation.Target JavaDoc;
10 import java.lang.annotation.Retention JavaDoc;
11 import static java.lang.annotation.ElementType JavaDoc.*;
12 import static java.lang.annotation.RetentionPolicy JavaDoc.*;
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 JavaDoc
24 @Retention JavaDoc(RUNTIME)
25 @Target JavaDoc(TYPE)
26 public @interface WebServiceRefs {
27    /**
28     * Array used for multiple web service reference declarations.
29     */

30    WebServiceRef[] value();
31 }
32
Popular Tags