001    /**
002     * Copyright (c) 2000-2011 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
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 LAYOUT_SET_PROTOTYPE_LINK_ENABLED =
043                    "LAYOUT_SET_PROTOTYPE_LINK_ENABLED";
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_CREATED_FROM_PROTOTYPE =
050                    "CREATED_FROM_PROTOTYPE";
051    
052            public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_NAME =
053                    "MERGE_BY_LAYOUT_NAME";
054    
055            public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_UUID =
056                    "MERGE_BY_LAYOUT_UUID";
057    
058            public static final String PERFORM_DIRECT_BINARY_IMPORT =
059                    "PERFORM_DIRECT_BINARY_IMPORT";
060    
061            public static final String PERMISSIONS = "PERMISSIONS";
062    
063            public static final String PORTLET_ARCHIVED_SETUPS =
064                    "PORTLET_ARCHIVED_SETUPS";
065    
066            public static final String PORTLET_DATA = "PORTLET_DATA";
067    
068            public static final String PORTLET_DATA_ALL = "PORTLET_DATA_ALL";
069    
070            public static final String PORTLET_DATA_CONTROL_DEFAULT =
071                    "PORTLET_DATA_CONTROL_DEFAULT";
072    
073            public static final String PORTLET_SETUP = "PORTLET_SETUP";
074    
075            public static final String PORTLET_USER_PREFERENCES =
076                    "PORTLET_USER_PREFERENCES";
077    
078            public static final String PORTLETS_MERGE_MODE = "PORTLETS_MERGE_MODE";
079    
080            public static final String PORTLETS_MERGE_MODE_ADD_TO_BOTTOM =
081                    "ADD_TO_BOTTOM";
082    
083            public static final String PORTLETS_MERGE_MODE_ADD_TO_TOP = "ADD_TO_TOP";
084    
085            public static final String PORTLETS_MERGE_MODE_REPLACE = "REPLACE";
086    
087            public static final String PUBLIC_LAYOUT_PERMISSIONS =
088                    "PUBLIC_LAYOUT_PERMISSIONS";
089    
090            public static final String PUBLISH_TO_REMOTE = "PUBLISH_TO_REMOTE";
091    
092            public static final String SELECTED_LAYOUTS = "SELECTED_LAYOUTS";
093    
094            public static final String THEME = "THEME";
095    
096            public static final String THEME_REFERENCE = "THEME_REFERENCE";
097    
098            public static final String UPDATE_LAST_PUBLISH_DATE =
099                    "UPDATE_LAST_PUBLISH_DATE";
100    
101            public static final String USER_ID_STRATEGY = "USER_ID_STRATEGY";
102    
103            public static final String USER_PERMISSIONS = "USER_PERMISSIONS";
104    
105    }