01: /*
02: * Poker
03: *
04: * Enhydra super-servlet presentation object
05: *
06: */
07:
08: package poker.presentation.login;
09:
10: // Enhydra SuperServlet imports
11: import com.lutris.appserver.server.httpPresentation.HttpPresentation;
12: import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
13: import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
14:
15: public class StartPresentation implements HttpPresentation {
16:
17: public void run(HttpPresentationComms comms)
18: throws HttpPresentationException {
19:
20: StartHTML start;
21:
22: start = (StartHTML) comms.xmlcFactory.create(StartHTML.class);
23: comms.response.writeDOM(start);
24: }
25:
26: }
|