View Javadoc
1   /*
2    * Copyright (C) 2003-2007 eXo Platform SAS.
3    *
4    * This program is free software; you can redistribute it and/or
5    * modify it under the terms of the GNU Affero General Public License
6    * as published by the Free Software Foundation; either version 3
7    * of the License, or (at your option) any later version.
8    *
9    * 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, see<http://www.gnu.org/licenses/>.
16   */
17  package org.exoplatform.services.cms;
18  
19  /**
20   * @author benjaminmestrallet
21   */
22  public interface BasePath {
23    public static final String CMS_PATH = "cmsPath";
24    public static final String CMS_TEMPLATES_PATH = "templatesPath";
25    public static final String CMS_HOME_PATH = "homePath";
26    public static final String CMS_USERS_PATH = "usersPath";
27    public static final String CMS_GROUPS_PATH = "groupsPath";
28    public static final String CMS_RULES_PATH = "cmsRulesPath";
29    public static final String CMS_VIEWTEMPLATES_PATH = "viewTemplatesPath" ;
30    public static final String CMS_VIEWS_PATH = "userViewsPath" ;
31    public static final String TAXONOMIES_TREE_DEFINITION_PATH = "exoTaxoTreesDefinitionPath";
32    public static final String TAXONOMIES_TREE_STORAGE_PATH = "exoTaxoTreesStoragePath";
33    public static final String EXO_FOLKSONOMY_PATH = "exoFolksonomiesPath";
34    public static final String EXO_TAGS_PATH = "exoTagsPath" ;
35    public static final String EXO_TAG_STYLE_PATH = "exoOldTagStylePath" ;
36    public static final String EXO_NEW_TAG_STYLE_PATH = "exoTagStylePath" ;
37    public static final String METADATA_PATH = "metadataPath" ;
38    public static final String QUERIES_PATH = "queriesPath" ;
39    public static final String EXO_DRIVES_PATH = "exoDrivesPath" ;
40    public static final String ECM_EXPLORER_TEMPLATES = "ecmExplorerTemplates" ;
41    public static final String CMS_SCRIPTS_PATH = "cmsScriptsPath" ;
42    public static final String CONTENT_BROWSER_SCRIPTS = "contentBrowserScripts" ;
43    public static final String ECM_EXPLORER_SCRIPTS = "ecmExplorerScripts" ;
44    public static final String ECM_ACTION_SCRIPTS = "ecmActionScripts" ;
45    public static final String ECM_INTERCEPTOR_SCRIPTS = "ecmInterceptorScripts" ;
46    public static final String ECM_WIDGET_SCRIPTS = "ecmWidgetScripts" ;
47  
48    public static final String TRASH_PATH = "newDocumentsTrashPath";
49  }