01: /*
02: * (C) Copyright 2000 - 2006 Nabh Information Systems, Inc.
03: *
04: * This program is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU General Public License
06: * as published by the Free Software Foundation; either version 2
07: * of the License, or (at your option) any later version.
08: *
09: * This program is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12: * GNU General Public License for more details.
13: *
14: * You should have received a copy of the GNU General Public License
15: * along with this program; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17: *
18: */
19: package com.nabhinc.portlet.admin;
20:
21: import com.nabhinc.core.Constants;
22:
23: /**
24: *
25: *
26: * @author Padmanabh Dabke
27: * (c) 2006 Nabh Information Systems, Inc. All Rights Reserved.
28: */
29: public class PortalAdminConstants {
30:
31: public static final int[] DEFAULT_USER_ROLES = { Constants.USER_ROLE_ID };
32: public static final String DISABLE_AJAX_PARAM = "disable_ajax";
33: public static final String LOGIN_CAPTCHA_PARAM = "login_captcha";
34: public static final String REG_CAPTCHA_PARAM = "reg_captcha";
35: public static final String REMEMBER_ME_PARAM = "remember_me";
36: public static final String REMEMBER_USER_NAME_PARAM = "remember_username";
37: public static final String SUPPORT_SSL_PARAM = "support_ssl";
38: public static final String SECURE_LOGIN_PARAM = "secure_login";
39: public static final String ALLOW_SELF_REG_PARAM = "allow_self_reg";
40: public static final String SEND_USER_NAME_PARAM = "send_username";
41: public static final String SHOW_LOCALE_ICONS_PARAM = "show_locale_icons";
42: public static final String PORTAL_URL_PREFIX_PARAM = "url_prefix";
43: public static final String PORTAL_SECURE_URL_PREFIX_PARAM = "sec_url_prefix";
44: public static final String NOT_FOUND_PORTLET_PARAM = "not_found_portlet";
45: public static final String THEMES_DIR_PARAM = "themes_dir";
46: public static final String WIDE_PORTLETS_PARAM = "wide_portlets";
47: public static final String TIMEOUT_PARAM = "session_timeout";
48: public static final String ADMIN_EMAIL_PARAM = "admin_email";
49: public static final String PROTECTED_REDIRECT_PARAM = "pr_redirect";
50: public static final String DEFAULT_LOCALE_PARAM = "default_locale";
51:
52: }
|