1 package org.codehaus.xfire.annotations.backport175;
2
3 /***
4 * backport 175 version of the HandlerChain annotation.
5 *
6 * @author Arjen Poutsma
7 * @see org.codehaus.xfire.annotations.HandlerChainAnnotation
8 */
9 public interface HandlerChain
10 {
11 /***
12 * Returns the location of the handler chain file. The location is a URL, which may be relative or absolute.
13 * Relative URLs are relative to the location of the service implementation bean at the time of processing.
14 *
15 * @return the location of the handler chain file.
16 */
17 String file();
18
19 /***
20 * Returns the name of the handler chain in the configuration file.
21 *
22 * @return the name of the handler chain.
23 */
24 String name();
25
26 }