KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hamletsoft > enhydra > cactus > spec > EnhydraAppImplicitObjects


1 /*
2  * CactusForEnhydra
3  *
4  * Enhydra super-servlet specification object
5  *
6  */

7
8 package org.hamletsoft.enhydra.cactus.spec;
9
10
11 import javax.servlet.http.*;
12 import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
13 import javax.servlet.ServletContext JavaDoc;
14
15 public interface EnhydraAppImplicitObjects{
16
17
18 public HttpPresentationComms getPresentationComms ();
19 public void setHttpPresentationComms (HttpPresentationComms theComms);
20
21 public void setHttpServletRequest(HttpServletRequest theRequest);
22 public void setHttpServletResponse(HttpServletResponse theResponse);
23 public void setServletContext(ServletContext JavaDoc theContext);
24
25
26 }
Popular Tags