01: package de.schlund.pfixcore.workflow;
02:
03: import de.schlund.pfixcore.exception.PustefixApplicationException;
04: import de.schlund.pfixcore.exception.PustefixCoreException;
05: import de.schlund.pfixxml.PfixServletRequest;
06: import de.schlund.pfixxml.SPDocument;
07:
08: /**
09: * Implemented by a Context instance that provides request handling.
10: *
11: * @author Sebastian Marsching <sebastian.marsching@1und1.de>
12: */
13: public interface ExtendedContext extends Context {
14:
15: SPDocument handleRequest(PfixServletRequest preq)
16: throws PustefixApplicationException, PustefixCoreException;
17:
18: }
|