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 BlackPagePresentation implements HttpPresentation {
16:
17: public void run(HttpPresentationComms comms)
18: throws HttpPresentationException {
19:
20: BlackPageHTML black;
21:
22: black = (BlackPageHTML) comms.xmlcFactory
23: .create(BlackPageHTML.class);
24: comms.response.writeDOM(black);
25: }
26:
27: }
|