1   /**
2    * Copyright (c) 2000-2010 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   *
12   * 
13   */
14  
15  package com.liferay.portal.lar;
16  
17  /**
18   * <a href="PortletDataHandlerKeys.java.html"><b><i>View Source</i></b></a>
19   *
20   * @author Raymond Augé
21   */
22  public class PortletDataHandlerKeys {
23  
24      public static final String DATA_STRATEGY = "DATA_STRATEGY";
25  
26      public static final String DATA_STRATEGY_COPY_AS_NEW =
27          "DATA_STRATEGY_COPY_AS_NEW";
28  
29      public static final String DATA_STRATEGY_MIRROR = "DATA_STRATEGY_MIRROR";
30  
31      public static final String DELETE_MISSING_LAYOUTS =
32          "DELETE_MISSING_LAYOUTS";
33  
34      public static final String DELETE_PORTLET_DATA = "DELETE_PORTLET_DATA";
35  
36      public static final String LAYOUTS_IMPORT_MODE = "LAYOUTS_IMPORT_MODE";
37  
38      public static final String LAYOUTS_IMPORT_MODE_ADD_AS_NEW = "ADD_AS_NEW";
39  
40      public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_ID =
41          "MERGE_BY_LAYOUT_ID";
42  
43      public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_NAME =
44          "MERGE_BY_LAYOUT_NAME";
45  
46      public static final String PERMISSIONS = "PERMISSIONS";
47  
48      public static final String PORTLET_ARCHIVED_SETUPS =
49          "PORTLET_ARCHIVED_SETUPS";
50  
51      public static final String PORTLET_DATA = "PORTLET_DATA";
52  
53      public static final String PORTLET_DATA_ALL = "PORTLET_DATA_ALL";
54  
55      public static final String PORTLET_DATA_CONTROL_DEFAULT =
56          "PORTLET_DATA_CONTROL_DEFAULT";
57  
58      public static final String PORTLET_SETUP = "PORTLET_SETUP";
59  
60      public static final String PORTLET_USER_PREFERENCES =
61          "PORTLET_USER_PREFERENCES";
62  
63      public static final String PORTLETS_MERGE_MODE = "PORTLETS_MERGE_MODE";
64  
65      public static final String PORTLETS_MERGE_MODE_ADD_TO_BOTTOM =
66          "ADD_TO_BOTTOM";
67  
68      public static final String PORTLETS_MERGE_MODE_ADD_TO_TOP = "ADD_TO_TOP";
69  
70      public static final String PORTLETS_MERGE_MODE_REPLACE = "REPLACE";
71  
72      public static final String SELECTED_LAYOUTS = "SELECTED_LAYOUTS";
73  
74      public static final String THEME = "THEME";
75  
76      public static final String USER_ID_STRATEGY = "USER_ID_STRATEGY";
77  
78      public static final String USER_PERMISSIONS = "USER_PERMISSIONS";
79  
80  }