KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > server > theme > ThemeConstants


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.server.theme;
10
11 /**
12  * Constant definitions for themes.
13  *
14  * @author <a HREF="mailto:mholzner@novell.com>Martin Holzner</a>
15  * @version $LastChangedRevision$, $LastChangedDate$
16  */

17 public final class ThemeConstants
18 {
19    private ThemeConstants()
20    {
21    }
22
23    /**
24     * This must match the URL mapping of the theme Servlet in web.xml
25     */

26    public static final String JavaDoc THEMEURI = "/theme";
27    public static final String JavaDoc ATTR_THEME = "THEME";
28    public static final String JavaDoc ATTR_THEMESERVER = "THEMESERVER";
29    public static final String JavaDoc PARAM_THEME = "_theme";
30 }
31
Popular Tags