KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > admin > presentation > LoginPresentation


1 package org.enhydra.admin.presentation;
2
3 import com.lutris.appserver.server.httpPresentation.*;
4
5 public class LoginPresentation implements HttpPresentation {
6
7   public void run(HttpPresentationComms comms)
8         throws HttpPresentationException {
9
10         LoginHTML htmlObj = (LoginHTML)comms.xmlcFactory.create(LoginHTML.class);
11         comms.response.writeDOM(htmlObj);
12     }
13 }
14
15
16
17
18
Popular Tags