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 ;9 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 allows16 * multiple web service references to be declared at the17 * class level.18 *19 * @see javax.xml.ws.WebServiceRef20 * @since 2.021 */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 }32