01: /*
02: * Created on Dec 9, 2004
03: */
04: package uk.org.ponder.servletutil;
05:
06: /**
07: * The interface exposed by a "lite Web Service" as stored in the
08: * InformationHandlerRoot and serviced by the InformationServlet.
09: * @author Antranig Basman (antranig@caret.cam.ac.uk)
10: */
11: public interface InformationHandler {
12: public String getName();
13:
14: public Object handleRequest(Object argument);
15: }
|