1 package org.codehaus.xfire.annotations.commons.soap;
2
3 import org.codehaus.xfire.annotations.soap.SOAPMessageHandler;
4 import org.codehaus.xfire.annotations.soap.SOAPMessageHandlersAnnotation;
5
6
7 /***
8 * Commons Attributes version of the SOAP message handlers annotation.
9 *
10 * @author Arjen Poutsma
11 * @@org.apache.commons.attributes.Target(org.apache.commons.attributes.Target.CLASS)
12 * @see org.codehaus.xfire.annotations.soap.SOAPMessageHandlersAnnotation
13 */
14 public class SOAPMessageHandlers
15 extends SOAPMessageHandlersAnnotation
16 {
17 /***
18 * Initializes a new instance of the <code>SOAPMessageHandlersAnnotation</code>.
19 *
20 * @param value the handlers.
21 */
22 public SOAPMessageHandlers(SOAPMessageHandler[] value)
23 {
24 super(value);
25 }
26 }