01: package de.schlund.pfixcore.workflow;
02:
03: import de.schlund.pfixxml.PfixServletRequest;
04:
05: /**
06: * Describe interface ContextInterceptor here.
07: *
08: *
09: * Created: Thu Apr 7 21:26:50 2005
10: *
11: * @author <a href="mailto:jtl@schlund.de">Jens Lautenbacher</a>
12: * @version 1.0
13: */
14: public interface ContextInterceptor {
15: void process(Context context, PfixServletRequest preq);
16: }
|