01: /*
02: * CactusForEnhydra
03: *
04: * Enhydra super-servlet specification object
05: *
06: */
07:
08: package org.hamletsoft.enhydra.cactus.spec;
09:
10: import javax.servlet.http.*;
11: import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
12: import javax.servlet.ServletContext;
13:
14: public interface EnhydraAppImplicitObjects {
15:
16: public HttpPresentationComms getPresentationComms();
17:
18: public void setHttpPresentationComms(HttpPresentationComms theComms);
19:
20: public void setHttpServletRequest(HttpServletRequest theRequest);
21:
22: public void setHttpServletResponse(HttpServletResponse theResponse);
23:
24: public void setServletContext(ServletContext theContext);
25:
26: }
|