/*
*
* Copyright SHMsoft, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.freeeed.search.web;
public class WebConstants {
public static final String LOGGED_SITE_VISITOR_SESSION_KEY = "loggedSiteUserKey";
public static final String SITE_VISITOR_SESSION_KEY = "siteUserKey";
public static final String LOGIN_REQUIRED_PAGE = "main.html";
public static final String MAIN_PAGE = "main";
public static final String SEARCH_PAGE = "search";
public static final String SEARCH_AJAX_PAGE = "search-ajax";
public static final String TAG_PAGE = "tag";
public static final String LOGOUT_PAGE = "logout";
public static final String LIST_USERS_PAGE = "listUsers";
public static final String LIST_USERS_PAGE_REDIRECT = "listusers.html";
public static final String USER_PAGE = "user";
public static final String EDIT_PROJECT_PAGE = "edit_project";
public static final String MAIN_PAGE_REDIRECT = "main.html";
public static final String LIST_CASES_PAGE = "listCases";
public static final String LIST_CASES_PAGE_REDIRECT = "listcases.html";
public static final String CASE_PAGE = "case";
public static final String APP_SETTINGS_PAGE = "appSettings";
public static final String TAG_AUTO = "tagAuto";
public static final String CASE_FILE_DOWNLOAD = "caseFileDownload";
public static final String UPLOAD_FILE = "fileUpload";
public static final String WEB_SESSION_SOLR_OBJECT = "solrSession";
}