001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.kernel.lar;
016    
017    /**
018     * @author Raymond Augé
019     */
020    public class PortletDataHandlerKeys {
021    
022            public static final String CATEGORIES = "CATEGORIES";
023    
024            public static final String DATA_STRATEGY = "DATA_STRATEGY";
025    
026            public static final String DATA_STRATEGY_COPY_AS_NEW =
027                    "DATA_STRATEGY_COPY_AS_NEW";
028    
029            public static final String DATA_STRATEGY_MIRROR = "DATA_STRATEGY_MIRROR";
030    
031            public static final String DELETE_MISSING_LAYOUTS =
032                    "DELETE_MISSING_LAYOUTS";
033    
034            public static final String DELETE_PORTLET_DATA = "DELETE_PORTLET_DATA";
035    
036            public static final String IGNORE_LAST_PUBLISH_DATE =
037                    "IGNORE_LAST_PUBLISH_DATE";
038    
039            public static final String LAYOUTS_IMPORT_MODE = "LAYOUTS_IMPORT_MODE";
040    
041            public static final String LAYOUTS_IMPORT_MODE_ADD_AS_NEW = "ADD_AS_NEW";
042    
043            public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_ID =
044                    "MERGE_BY_LAYOUT_ID";
045    
046            public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_NAME =
047                    "MERGE_BY_LAYOUT_NAME";
048    
049            public static final String PERMISSIONS = "PERMISSIONS";
050    
051            public static final String PORTLET_ARCHIVED_SETUPS =
052                    "PORTLET_ARCHIVED_SETUPS";
053    
054            public static final String PORTLET_DATA = "PORTLET_DATA";
055    
056            public static final String PORTLET_DATA_ALL = "PORTLET_DATA_ALL";
057    
058            public static final String PORTLET_DATA_CONTROL_DEFAULT =
059                    "PORTLET_DATA_CONTROL_DEFAULT";
060    
061            public static final String PORTLET_SETUP = "PORTLET_SETUP";
062    
063            public static final String PORTLET_USER_PREFERENCES =
064                    "PORTLET_USER_PREFERENCES";
065    
066            public static final String PORTLETS_MERGE_MODE = "PORTLETS_MERGE_MODE";
067    
068            public static final String PORTLETS_MERGE_MODE_ADD_TO_BOTTOM =
069                    "ADD_TO_BOTTOM";
070    
071            public static final String PORTLETS_MERGE_MODE_ADD_TO_TOP = "ADD_TO_TOP";
072    
073            public static final String PORTLETS_MERGE_MODE_REPLACE = "REPLACE";
074    
075            public static final String SELECTED_LAYOUTS = "SELECTED_LAYOUTS";
076    
077            public static final String THEME = "THEME";
078    
079            public static final String USER_ID_STRATEGY = "USER_ID_STRATEGY";
080    
081            public static final String USER_PERMISSIONS = "USER_PERMISSIONS";
082    
083    }