01: /*
02: * Created on 24-Jan-2006
03: */
04: package uk.org.ponder.rsf.processor;
05:
06: /** Register a hook in the "handler chain" from the RootBeanHandler.
07: * The hook returns <code>true</code> if it has successfully handled this
08: * request, in which case further processing should terminate.
09: * @author Antranig Basman (amb26@ponder.org.uk)
10: *
11: */
12: // cf. HandlerInterceptor!!
13: public interface HandlerHook {
14: public boolean handle();
15: }
|