KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > za > org > coefficient > modules > navigation > AdminNavigate


1 /*
2  * Coefficient - facilitates project based collaboration
3  * Copyright (C) 2003, Dylan Etkin, CSIR icomtek
4  * PO Box 395
5  * Pretoria 0001, RSA
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  */

19
20 package za.org.coefficient.modules.navigation;
21
22 import za.org.coefficient.interfaces.CoefficientContext;
23 import za.org.coefficient.util.ejb.VelocityScreenUtil;
24
25 /**
26  * @pojo2ejb.class
27  * name="Administration"
28  * jndi-prefix="za/org/coefficient/permanent/"
29  * interface-extends="za.org.coefficient.interfaces.Module"
30  * interface-local-extends="za.org.coefficient.interfaces.ModuleLocal"
31  *
32  * @web.resource-env-ref
33  * name="za/org/coefficient/permanent/Administration"
34  * type="za.org.coefficient.modules.navigation.AdminNavigate"
35  * @web.resource-env-ref
36  * name="Administration"
37  * type="za.org.coefficient.modules.navigation.AdminNavigate"
38  */

39 public class AdminNavigate extends BaseNavigate {
40     //~ Static fields/initializers =============================================
41

42     private static final String JavaDoc NAME_SPACE_ADMIN = "admin";
43
44     //~ Methods ================================================================
45

46     public String JavaDoc getMainMethod() {
47         return "buildNavigation";
48     }
49
50     public String JavaDoc getModuleDescription() {
51         return "Navigation for administrator functions";
52     }
53
54     public String JavaDoc getModuleDisplayName() {
55         return "Administration";
56     }
57
58     public CoefficientContext buildNavigation(CoefficientContext ctx) {
59         return buildNavigation(ctx, new String JavaDoc[] { NAME_SPACE_ADMIN },
60             "za/org/coefficient/modules/navigation" +
61         VelocityScreenUtil.TEMPLATES + "admin_line.vm",
62             "za/org/coefficient/modules/navigation" +
63         VelocityScreenUtil.TEMPLATES + "admin_index.vm", true);
64     }
65 }
66
Popular Tags