001    /**
002     * Copyright (c) 2000-present 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.portlet.exportimport.lar;
016    
017    /**
018     * @author Raymond Aug??
019     */
020    public class PortletDataHandlerKeys {
021    
022            /**
023             * @deprecated As of 7.0.0, with no direct replacement
024             */
025            @Deprecated
026            public static final String CATEGORIES = "CATEGORIES";
027    
028            public static final String COMMENTS = "COMMENTS";
029    
030            public static final String DATA_STRATEGY = "DATA_STRATEGY";
031    
032            public static final String DATA_STRATEGY_COPY_AS_NEW =
033                    "DATA_STRATEGY_COPY_AS_NEW";
034    
035            public static final String DATA_STRATEGY_MIRROR = "DATA_STRATEGY_MIRROR";
036    
037            public static final String DATA_STRATEGY_MIRROR_OVERWRITE =
038                    "DATA_STRATEGY_MIRROR_OVERWRITE";
039    
040            public static final String DELETE_MISSING_LAYOUTS =
041                    "DELETE_MISSING_LAYOUTS";
042    
043            public static final String DELETE_PORTLET_DATA = "DELETE_PORTLET_DATA";
044    
045            public static final String DELETIONS = "DELETIONS";
046    
047            public static final String IGNORE_LAST_PUBLISH_DATE =
048                    "IGNORE_LAST_PUBLISH_DATE";
049    
050            public static final String LAYOUT_SET_PROTOTYPE_LINK_ENABLED =
051                    "LAYOUT_SET_PROTOTYPE_LINK_ENABLED";
052    
053            public static final String LAYOUT_SET_SETTINGS = "LAYOUT_SET_SETTINGS";
054    
055            public static final String LAYOUTS_IMPORT_MODE = "LAYOUTS_IMPORT_MODE";
056    
057            public static final String LAYOUTS_IMPORT_MODE_ADD_AS_NEW = "ADD_AS_NEW";
058    
059            public static final String LAYOUTS_IMPORT_MODE_CREATED_FROM_PROTOTYPE =
060                    "CREATED_FROM_PROTOTYPE";
061    
062            public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_NAME =
063                    "MERGE_BY_LAYOUT_NAME";
064    
065            public static final String LAYOUTS_IMPORT_MODE_MERGE_BY_LAYOUT_UUID =
066                    "MERGE_BY_LAYOUT_UUID";
067    
068            public static final String LOGO = "LOGO";
069    
070            public static final String PERFORM_DIRECT_BINARY_IMPORT =
071                    "PERFORM_DIRECT_BINARY_IMPORT";
072    
073            public static final String PERMISSIONS = "PERMISSIONS";
074    
075            public static final String PORTLET_ARCHIVED_SETUPS =
076                    "PORTLET_ARCHIVED_SETUPS";
077    
078            public static final String PORTLET_ARCHIVED_SETUPS_ALL =
079                    "PORTLET_ARCHIVED_SETUPS_ALL";
080    
081            public static final String PORTLET_CONFIGURATION = "PORTLET_CONFIGURATION";
082    
083            public static final String PORTLET_CONFIGURATION_ALL =
084                    "PORTLET_CONFIGURATION_ALL";
085    
086            public static final String PORTLET_DATA = "PORTLET_DATA";
087    
088            public static final String PORTLET_DATA_ALL = "PORTLET_DATA_ALL";
089    
090            public static final String PORTLET_DATA_CONTROL_DEFAULT =
091                    "PORTLET_DATA_CONTROL_DEFAULT";
092    
093            public static final String PORTLET_SETUP = "PORTLET_SETUP";
094    
095            public static final String PORTLET_SETUP_ALL = "PORTLET_SETUP_ALL";
096    
097            public static final String PORTLET_USER_PREFERENCES =
098                    "PORTLET_USER_PREFERENCES";
099    
100            public static final String PORTLET_USER_PREFERENCES_ALL =
101                    "PORTLET_USER_PREFERENCES_ALL";
102    
103            public static final String PORTLETS_MERGE_MODE = "PORTLETS_MERGE_MODE";
104    
105            public static final String PORTLETS_MERGE_MODE_ADD_TO_BOTTOM =
106                    "ADD_TO_BOTTOM";
107    
108            /**
109             * @deprecated As of 7.0.0, with no direct replacement
110             */
111            @Deprecated
112            public static final String PORTLETS_MERGE_MODE_ADD_TO_TOP = "ADD_TO_TOP";
113    
114            public static final String PORTLETS_MERGE_MODE_REPLACE = "REPLACE";
115    
116            /**
117             * @deprecated As of 7.0.0, with no direct replacement
118             */
119            @Deprecated
120            public static final String PUBLIC_LAYOUT_PERMISSIONS =
121                    "PUBLIC_LAYOUT_PERMISSIONS";
122    
123            /**
124             * @deprecated As of 7.0.0, with no direct replacement
125             */
126            @Deprecated
127            public static final String PUBLISH_TO_REMOTE = "PUBLISH_TO_REMOTE";
128    
129            public static final String RATINGS = "RATINGS";
130    
131            public static final String SELECTED_LAYOUTS = "SELECTED_LAYOUTS";
132    
133            public static final String THEME_REFERENCE = "THEME_REFERENCE";
134    
135            public static final String UPDATE_LAST_PUBLISH_DATE =
136                    "UPDATE_LAST_PUBLISH_DATE";
137    
138            public static final String USER_ID_STRATEGY = "USER_ID_STRATEGY";
139    
140    }