KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > raptus > owxv3 > modules > usermgr > UserMgrConstants


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

5
6 package com.raptus.owxv3.modules.usermgr;
7
8
9 /**
10  * This class defines globally available constant values.
11  *
12  * <hr>
13  * <table width="100%" border="0">
14  * <tr>
15  * <td width="24%"><b>Filename</b></td><td width="76%">FileMgrConstants.java</td>
16  * </tr>
17  * <tr>
18  * <td width="24%"><b>Author</b></td><td width="76%">REEA</td>
19  * </tr>
20  * <tr>
21  * <td width="24%"><b>Date</b></td><td width="76%">25th of September 2001</td>
22  * </tr>
23  * </table>
24  * <hr>
25  * <table width="100%" border="0">
26  * <tr>
27  * <td width="24%"><b>Date / Author</b></td><td width="76%"><b>Changes</b></td>
28  * </tr>
29  * </table>
30  * <hr>
31  * <table width="100%" border="0">
32  * <tr>
33  * <td>
34  * This file is a collection of constants use in the FileManager module.
35  * </td>
36  * </tr>
37  * </table>
38  * <hr>
39  */

40 public class UserMgrConstants extends Object JavaDoc
41 {
42    /**
43     *The "index" element identifier
44     */

45    public static final String JavaDoc ELEMENT_INDEX = "index";
46
47    /**
48     * The edit/add new element identifier
49     */

50    public static final String JavaDoc ELEMENT_EDITUSER = "editu";
51    
52    /**
53     * List users element identifier
54     */

55    public static final String JavaDoc ELEMENT_LISTUSER = "listu";
56    
57   /**
58     * The edit/add new element identifier
59     */

60    public static final String JavaDoc ELEMENT_EDITROLE = "editr";
61    
62    /**
63     * List users element identifier
64     */

65    public static final String JavaDoc ELEMENT_LISTROLE = "listrole";
66    
67    
68    /**
69     * The action identifier
70     */

71    public static final String JavaDoc HTTPGET_PARAM_ACTION = "action";
72    
73    /**
74     * The save action
75     */

76    public static final String JavaDoc VMODULE_ACTION_SAVE = "save";
77    
78    /**
79     * then new user action
80     */

81    public static final String JavaDoc VMODULE_ACTION_NEW = "new";
82    
83    
84    /**
85     * the list user ation
86     */

87    public static final String JavaDoc VMODULE_ACTION_LIST = "list";
88    
89    /**
90     * The list user action
91     */

92    public static final String JavaDoc VMODULE_ACTION_DELETE = "delete";
93    
94    /**
95     * The edit action
96     */

97    public static final String JavaDoc VMODULE_ACTION_EDIT = "edit";
98    
99    public static final String JavaDoc HTTPGET_PARAM_USERID = "userid";
100    public static final String JavaDoc HTTPGET_PARAM_ROLEID = "roleid";
101    public static final String JavaDoc HTTPGET_PARAM_ROLES = "roles";
102    
103    public static final String JavaDoc VMODULE_LIST_ERROR_INVALIDDELETE="module.usermgr.list.error.invaliddelete";
104 }
105
106 /* eof */
107
Popular Tags