1 /*
2 * Copyright (C) 2003-2009 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.wcm.webui.fastcontentcreator;
18
19 /**
20 * Created by The eXo Platform SAS
21 * Author : eXoPlatform
22 * chuong.phan@exoplatform.com, phan.le.thanh.chuong@gmail.com
23 * Jun 25, 2009
24 */
25 public class UIFCCConstant {
26
27 /** The Constant PREFERENCE_MODE. */
28 public static final String PREFERENCE_MODE = "mode";
29
30 /** The Constant PREFERENCE_IS_NEEDED_ACTION. */
31 public static final String PREFERENCE_IS_ACTION_NEEDED = "isActionNeeded";
32
33 /** The Constant PREFERENCE_REPOSITORY. */
34 public static final String PREFERENCE_REPOSITORY = "repository";
35
36 /** The Constant PREFERENCE_WORKSPACE. */
37 public static final String PREFERENCE_WORKSPACE = "workspace";
38
39 /** The Constant PREFERENCE_PATH. */
40 public static final String PREFERENCE_PATH = "path";
41
42 /** The Constant PREFERENCE_TYPE. */
43 public static final String PREFERENCE_TYPE = "type";
44
45 /** The Constant PREFERENCE_SAVE_BUTTON. */
46 public static final String PREFERENCE_SAVE_BUTTON = "saveButton";
47
48 /** The Constant PREFERENCE_SAVE_MESSAGE. */
49 public static final String PREFERENCE_SAVE_MESSAGE = "saveMessage";
50
51 /** The Constant PREFERENCE_IS_REDIRECT. */
52 public static final String PREFERENCE_IS_REDIRECT = "isRedirect";
53
54 /** The Constant PREFERENCE_REDIRECT_PATH. */
55 public static final String PREFERENCE_REDIRECT_PATH = "redirectPath";
56
57
58
59 /** The Constant TAXONOMY_POPUP_WINDOW. */
60 public static final String TAXONOMY_POPUP_WINDOW = "UIFCCTaxonomyPopupWindow";
61
62 /** The Constant SELECTOR_POPUP_WINDOW. */
63 public static final String SELECTOR_POPUP_WINDOW = "UIFCCSelectorPopupWindow";
64
65 /** The Constant SAVE_LOCATION_FIELD. */
66 public static final String SAVE_LOCATION_FIELD = "UIFCCSaveLocationField";
67
68 /** The Constant REPOSITORY_FORM_SELECTBOX. */
69 public static final String REPOSITORY_FORM_SELECTBOX = "UIFCCRepositoryFormSelectBox" ;
70
71 /** The Constant WORKSPACE_FORM_SELECTBOX. */
72 public static final String WORKSPACE_FORM_SELECTBOX = "UIFCCWorkspaceFormSelectBox" ;
73
74 /** The Constant LOCATION_FORM_INPUT_ACTION. */
75 public static final String LOCATION_FORM_INPUT_ACTION = "UIFCCLocationFormInputAction" ;
76
77 /** The Constant LOCATION_FORM_STRING_INPUT. */
78 public static final String LOCATION_FORM_STRING_INPUT = "UIFCCLocationFormStringInput" ;
79
80 /** The Constant TEMPLATE_FIELD. */
81 public static final String TEMPLATE_FIELD = "UIFCCTemplateField";
82
83 /** The Constant TEMPLATE_FORM_SELECTBOX. */
84 public static final String TEMPLATE_FORM_SELECTBOX = "UIFCCTemplateFormSelectBox" ;
85
86 /** The Constant SAVE_FORM_STRING_INPUT. */
87 public static final String SAVE_FORM_STRING_INPUT = "UIFCCSaveFormStringInput";
88
89 /** The Constant MESSAGE_FORM_TEXTAREA_INPUT. */
90 public static final String MESSAGE_FORM_TEXTAREA_INPUT = "UIFCCMessageFormTextareaInput";
91
92 /** The Constant REDIRECT_FORM_CHECKBOX_INPUT. */
93 public static final String REDIRECT_FORM_CHECKBOX_INPUT = "UIFCCRedirectFormCheckboxInput";
94
95 /** The Constant REDIRECT_PATH_FORM_STRING_INPUT. */
96 public static final String REDIRECT_PATH_FORM_STRING_INPUT = "UIFCCRedirectPathFormStringInput";
97
98 /** The Constant ACTION_FIELD. */
99 public static final String ACTION_FIELD = "UIFCCActionField";
100
101 /** The Constant ACTION_GRID. */
102 public static final String ACTION_GRID = "UIFCCActionGrid";
103
104 /** The Constant ACTION_POPUP_WINDOW. */
105 public static final String ACTION_POPUP_WINDOW = "UIFCCActionPopupWindow";
106
107 /** The Constant ACTION_TYPE_SELECTBOX. */
108 public static final String ACTION_TYPE_SELECTBOX = "UIFCCActionTypeSelectBox";
109 }