1 package org.codehaus.xfire.annotations.commons;
2
3 import org.codehaus.xfire.annotations.HandlerChainAnnotation;
4
5 /***
6 * Commons Attributes version of the HandlerChain Annotation.
7 *
8 * @author <a href="mailto:poutsma@mac.com">Arjen Poutsma</a>
9 * @@org.apache.commons.attributes.Target(org.apache.commons.attributes.Target.CLASS)
10 * @see HandlerChainAnnotation
11 */
12 public class HandlerChain
13 extends HandlerChainAnnotation
14 {
15 /***
16 * Initializes a new instance of the <code>HandlerChain</code> attribute with the given file and chain name.
17 *
18 * @param file the file name.
19 * @param name the handler name.
20 */
21 public HandlerChain(String file, String name)
22 {
23 super(file, name);
24 }
25
26 }