KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > pim > presentation > enhydrapim > Index


1 /*
2  * Created on May 6, 2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.enhydra.pim.presentation.enhydrapim;
8
9 import org.enhydra.pim.presentation.BasePO;
10 import org.enhydra.xml.xmlc.XMLObject;
11
12 import com.lutris.appserver.server.httpPresentation.HttpPresentationException;
13
14 /**
15  * @author P.Djojic May 6, 2005 1:29:06 AM
16  *
17  * TODO Index
18  */

19 public class Index extends BasePO {
20
21     /* (non-Javadoc)
22      * @see org.enhydra.pim.presentation.BasePO#handleDefault()
23      */

24     public XMLObject handleDefault() throws HttpPresentationException {
25         return showIndexPage();
26     }
27
28     /* (non-Javadoc)
29      * @see org.enhydra.pim.presentation.BasePO#handleDefault()
30      */

31     public XMLObject handleRegisterCancel() throws HttpPresentationException {
32         return showIndexPage();
33     }
34     
35     
36     /* (non-Javadoc)
37      * @see org.enhydra.pim.presentation.BasePO#loggedInUserRequired()
38      */

39     protected boolean loggedInUserRequired() {
40         return false;
41     }
42
43 }
44
Popular Tags