KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > raptus > owxv3 > modules > filemgr > EAFileMgrAction


1 /*
2  * eAdmin/OWX
3  * Copyright (C) 1996-2003 OWX-Project Team <owx-team@gmx.net>
4  */

5
6 package com.raptus.owxv3.modules.filemgr;
7
8 import javax.servlet.http.HttpServletRequest JavaDoc;
9
10 import com.raptus.owxv3.*;
11 import com.raptus.owxv3.api.VModuleRoleAction;
12
13
14 /**
15  *
16  * <hr>
17  * <table width="100%" border="0">
18  * <tr>
19  * <td width="24%"><b>Filename</b></td><td width="76%">EANewsAction.java</td>
20  * </tr>
21  * <tr>
22  * <td width="24%"><b>Author</b></td><td width="76%">Guy Z�rcher (gzuercher@raptus.com)</td>
23  * </tr>
24  * <tr>
25  * <td width="24%"><b>Date</b></td><td width="76%">20th of April 2001</td>
26  * </tr>
27  * </table>
28  * <hr>
29  * <table width="100%" border="0">
30  * <tr>
31  * <td width="24%"><b>Date / Author</b></td><td width="76%"><b>Changes</b></td>
32  * </tr>
33  * </table>
34  * <hr>
35  */

36 //public class EAFileMgrAction extends VModuleAuthAction
37
public class EAFileMgrAction extends VModuleRoleAction
38 {
39     /**
40      *
41      */

42     public String JavaDoc dispatchVModuleElement(HttpServletRequest JavaDoc request,
43                                          String JavaDoc element,
44                                          org.apache.struts.action.ActionForm form,
45                                          VModule vm,
46                                          com.raptus.owxv3.api.usermgr.User user)
47     {
48         if(element.compareToIgnoreCase(FileMgrConstants.ELEMENT_INDEX) == 0)
49         {
50             // doing what, here?
51
}
52         else
53             return null; // display unknown element screen
54

55         return Constants.SECTION_EADMIN + Constants.DEFAULT_SPACER + element;
56     }
57
58 }
59
60 // eof
61
Popular Tags