1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17   * SOFTWARE.
18   */
19  
20  package com.liferay.portal.lar;
21  
22  /**
23   * <a href="PortletDataHandlerKeys.java.html"><b><i>View Source</i></b></a>
24   *
25   * @author Raymond Augé
26   *
27   */
28  public class PortletDataHandlerKeys {
29  
30      public static final String DATA_STRATEGY = "DATA_STRATEGY";
31  
32      public static final String DATA_STRATEGY_COPY_AS_NEW =
33          "DATA_STRATEGY_COPY_AS_NEW";
34  
35      public static final String DATA_STRATEGY_MIRROR = "DATA_STRATEGY_MIRROR";
36  
37      public static final String DELETE_MISSING_LAYOUTS =
38          "DELETE_MISSING_LAYOUTS";
39  
40      public static final String DELETE_PORTLET_DATA = "DELETE_PORTLET_DATA";
41  
42      public static final String LAYOUTS_IMPORT_MODE = "LAYOUTS_IMPORT_MODE";
43  
44      public static final String LAYOUTS_IMPORT_MODE_ADD_AS_NEW = "ADD_AS_NEW";
45  
46      public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_ID =
47          "MERGE_BY_LAYOUT_ID";
48  
49      public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_NAME =
50          "MERGE_BY_LAYOUT_NAME";
51  
52      public static final String PERMISSIONS = "PERMISSIONS";
53  
54      public static final String PORTLET_ARCHIVED_SETUPS =
55          "PORTLET_ARCHIVED_SETUPS";
56  
57      public static final String PORTLET_DATA = "PORTLET_DATA";
58  
59      public static final String PORTLET_DATA_ALL = "PORTLET_DATA_ALL";
60  
61      public static final String PORTLET_DATA_CONTROL_DEFAULT =
62          "PORTLET_DATA_CONTROL_DEFAULT";
63  
64      public static final String PORTLET_SETUP = "PORTLET_SETUP";
65  
66      public static final String PORTLET_USER_PREFERENCES =
67          "PORTLET_USER_PREFERENCES";
68  
69      public static final String PORTLETS_MERGE_MODE = "PORTLETS_MERGE_MODE";
70  
71      public static final String PORTLETS_MERGE_MODE_ADD_TO_BOTTOM =
72          "ADD_TO_BOTTOM";
73  
74      public static final String PORTLETS_MERGE_MODE_ADD_TO_TOP = "ADD_TO_TOP";
75  
76      public static final String PORTLETS_MERGE_MODE_REPLACE = "REPLACE";
77  
78      public static final String SELECTED_LAYOUTS = "SELECTED_LAYOUTS";
79  
80      public static final String THEME = "THEME";
81  
82      public static final String USER_ID_STRATEGY = "USER_ID_STRATEGY";
83  
84      public static final String USER_PERMISSIONS = "USER_PERMISSIONS";
85  
86  }