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 CATEGORIES = "CATEGORIES";
25  
26      public static final String DATA_STRATEGY = "DATA_STRATEGY";
27  
28      public static final String DATA_STRATEGY_COPY_AS_NEW =
29          "DATA_STRATEGY_COPY_AS_NEW";
30  
31      public static final String DATA_STRATEGY_MIRROR = "DATA_STRATEGY_MIRROR";
32  
33      public static final String DELETE_MISSING_LAYOUTS =
34          "DELETE_MISSING_LAYOUTS";
35  
36      public static final String DELETE_PORTLET_DATA = "DELETE_PORTLET_DATA";
37  
38      public static final String LAYOUTS_IMPORT_MODE = "LAYOUTS_IMPORT_MODE";
39  
40      public static final String LAYOUTS_IMPORT_MODE_ADD_AS_NEW = "ADD_AS_NEW";
41  
42      public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_FRIENDLY_URL =
43          "MERGE_BY_FRIENDLY_URL";
44  
45      public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_ID =
46          "MERGE_BY_LAYOUT_ID";
47  
48      public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_NAME =
49          "MERGE_BY_LAYOUT_NAME";
50  
51      public static final String PERMISSIONS = "PERMISSIONS";
52  
53      public static final String PORTLET_ARCHIVED_SETUPS =
54          "PORTLET_ARCHIVED_SETUPS";
55  
56      public static final String PORTLET_DATA = "PORTLET_DATA";
57  
58      public static final String PORTLET_DATA_ALL = "PORTLET_DATA_ALL";
59  
60      public static final String PORTLET_DATA_CONTROL_DEFAULT =
61          "PORTLET_DATA_CONTROL_DEFAULT";
62  
63      public static final String PORTLET_SETUP = "PORTLET_SETUP";
64  
65      public static final String PORTLET_USER_PREFERENCES =
66          "PORTLET_USER_PREFERENCES";
67  
68      public static final String PORTLETS_MERGE_MODE = "PORTLETS_MERGE_MODE";
69  
70      public static final String PORTLETS_MERGE_MODE_ADD_TO_BOTTOM =
71          "ADD_TO_BOTTOM";
72  
73      public static final String PORTLETS_MERGE_MODE_ADD_TO_TOP = "ADD_TO_TOP";
74  
75      public static final String PORTLETS_MERGE_MODE_REPLACE = "REPLACE";
76  
77      public static final String SELECTED_LAYOUTS = "SELECTED_LAYOUTS";
78  
79      public static final String THEME = "THEME";
80  
81      public static final String USER_ID_STRATEGY = "USER_ID_STRATEGY";
82  
83      public static final String USER_PERMISSIONS = "USER_PERMISSIONS";
84  
85  }