001    /**
002     * Copyright (c) 2000-2011 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 DATA_STRATEGY_MIRROR_OVERWRITE =
032                    "DATA_STRATEGY_MIRROR_OVERWRITE";
033    
034            public static final String DELETE_MISSING_LAYOUTS =
035                    "DELETE_MISSING_LAYOUTS";
036    
037            public static final String DELETE_PORTLET_DATA = "DELETE_PORTLET_DATA";
038    
039            public static final String IGNORE_LAST_PUBLISH_DATE =
040                    "IGNORE_LAST_PUBLISH_DATE";
041    
042            public static final String PUBLIC_LAYOUT_PERMISSIONS =
043                    "PUBLIC_LAYOUT_PERMISSIONS";
044    
045            public static final String LAYOUTS_IMPORT_MODE = "LAYOUTS_IMPORT_MODE";
046    
047            public static final String LAYOUTS_IMPORT_MODE_ADD_AS_NEW = "ADD_AS_NEW";
048    
049            public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_ID =
050                    "MERGE_BY_LAYOUT_ID";
051    
052            public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_NAME =
053                    "MERGE_BY_LAYOUT_NAME";
054    
055            public static final String PERFORM_DIRECT_BINARY_IMPORT =
056                    "PERFORM_DIRECT_BINARY_IMPORT";
057    
058            public static final String PERMISSIONS = "PERMISSIONS";
059    
060            public static final String PORTLET_ARCHIVED_SETUPS =
061                    "PORTLET_ARCHIVED_SETUPS";
062    
063            public static final String PORTLET_DATA = "PORTLET_DATA";
064    
065            public static final String PORTLET_DATA_ALL = "PORTLET_DATA_ALL";
066    
067            public static final String PORTLET_DATA_CONTROL_DEFAULT =
068                    "PORTLET_DATA_CONTROL_DEFAULT";
069    
070            public static final String PORTLET_SETUP = "PORTLET_SETUP";
071    
072            public static final String PORTLET_USER_PREFERENCES =
073                    "PORTLET_USER_PREFERENCES";
074    
075            public static final String PORTLETS_MERGE_MODE = "PORTLETS_MERGE_MODE";
076    
077            public static final String PORTLETS_MERGE_MODE_ADD_TO_BOTTOM =
078                    "ADD_TO_BOTTOM";
079    
080            public static final String PORTLETS_MERGE_MODE_ADD_TO_TOP = "ADD_TO_TOP";
081    
082            public static final String PORTLETS_MERGE_MODE_REPLACE = "REPLACE";
083    
084            public static final String PUBLISH_TO_REMOTE = "PUBLISH_TO_REMOTE";
085    
086            public static final String SELECTED_LAYOUTS = "SELECTED_LAYOUTS";
087    
088            public static final String THEME = "THEME";
089    
090            public static final String THEME_REFERENCE = "THEME_REFERENCE";
091    
092            public static final String UPDATE_LAST_PUBLISH_DATE =
093                    "UPDATE_LAST_PUBLISH_DATE";
094    
095            public static final String USER_ID_STRATEGY = "USER_ID_STRATEGY";
096    
097            public static final String USER_PERMISSIONS = "USER_PERMISSIONS";
098    
099    }