KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > lutris > appserver > welcome > Welcome


1
2 /*
3  * Enhydra Java Application Server Project
4  *
5  * The contents of this file are subject to the Enhydra Public License
6  * Version 1.1 (the "License"); you may not use this file except in
7  * compliance with the License. You may obtain a copy of the License on
8  * the Enhydra web site ( http://www.enhydra.org/ ).
9  *
10  * Software distributed under the License is distributed on an "AS IS"
11  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
12  * the License for the specific terms governing rights and limitations
13  * under the License.
14  *
15  * The Initial Developer of the Enhydra Application Server is Lutris
16  * Technologies, Inc. The Enhydra Application Server and portions created
17  * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
18  * All Rights Reserved.
19  *
20  * Contributor(s):
21  *
22  * $Id: Welcome.java,v 1.1 2004/08/16 10:50:22 slobodan Exp $
23  */

24
25 package com.lutris.appserver.welcome;
26
27 import com.lutris.appserver.server.*;
28 import com.lutris.appserver.server.httpPresentation.*;
29
30 /**
31  * This is a standard Enhydra appliation. All of the work is done in the
32  * parent class StandardApplication. Normally application-wide data would
33  * be stored here, as well as startup code etc..
34  */

35 public class Welcome extends StandardApplication {
36
37     /**
38      * This is an optional function, used by the Multiserver's graphical
39      * admin. This bit of HTML appears in the status page for this
40      * application.
41      *
42      * @return HTML that is displayed in the status page of the
43      * Multiserver.
44      */

45     public String JavaDoc toHtml() {
46         return "<I>Customized information about your application " +
47                "can be displayed here.</I>";
48     }
49
50
51 }
52
Popular Tags