01: /*
02: * projectManagement
03: *
04: * Enhydra super-servlet presentation object
05: *
06: */
07:
08: package projectmanagement.presentation;
09:
10: import org.w3c.dom.*;
11: import org.w3c.dom.html.*;
12:
13: // Enhydra SuperServlet imports
14: import com.lutris.appserver.server.httpPresentation.HttpPresentation;
15: import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
16: import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
17:
18: // Standard imports
19: import java.io.IOException;
20:
21: /**
22: * Generates the blank HTML page.
23: */
24: public class Splash implements HttpPresentation {
25:
26: public void run(HttpPresentationComms comms)
27: throws HttpPresentationException, IOException {
28: comms.response.writeDOM(new SplashHTML());
29: }
30:
31: }
|