1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
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_LAYOUT_ID =
43          "MERGE_BY_LAYOUT_ID";
44  
45      public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_NAME =
46          "MERGE_BY_LAYOUT_NAME";
47  
48      public static final String PERMISSIONS = "PERMISSIONS";
49  
50      public static final String PORTLET_ARCHIVED_SETUPS =
51          "PORTLET_ARCHIVED_SETUPS";
52  
53      public static final String PORTLET_DATA = "PORTLET_DATA";
54  
55      public static final String PORTLET_DATA_ALL = "PORTLET_DATA_ALL";
56  
57      public static final String PORTLET_DATA_CONTROL_DEFAULT =
58          "PORTLET_DATA_CONTROL_DEFAULT";
59  
60      public static final String PORTLET_SETUP = "PORTLET_SETUP";
61  
62      public static final String PORTLET_USER_PREFERENCES =
63          "PORTLET_USER_PREFERENCES";
64  
65      public static final String PORTLETS_MERGE_MODE = "PORTLETS_MERGE_MODE";
66  
67      public static final String PORTLETS_MERGE_MODE_ADD_TO_BOTTOM =
68          "ADD_TO_BOTTOM";
69  
70      public static final String PORTLETS_MERGE_MODE_ADD_TO_TOP = "ADD_TO_TOP";
71  
72      public static final String PORTLETS_MERGE_MODE_REPLACE = "REPLACE";
73  
74      public static final String SELECTED_LAYOUTS = "SELECTED_LAYOUTS";
75  
76      public static final String THEME = "THEME";
77  
78      public static final String USER_ID_STRATEGY = "USER_ID_STRATEGY";
79  
80      public static final String USER_PERMISSIONS = "USER_PERMISSIONS";
81  
82  }