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.background.task;
016    
017    /**
018     * @author Michael C. Han
019     */
020    public class BackgroundTaskExecutorNames {
021    
022            public static final String LAYOUT_EXPORT_BACKGROUND_TASK_EXECUTOR =
023                    "com.liferay.exportimport.background.task." +
024                            "LayoutExportBackgroundTaskExecutor";
025    
026            public static final String LAYOUT_IMPORT_BACKGROUND_TASK_EXECUTOR =
027                    "com.liferay.exportimport.background.task." +
028                            "LayoutImportBackgroundTaskExecutor";
029    
030            public static final String LAYOUT_REMOTE_STAGING_BACKGROUND_TASK_EXECUTOR =
031                    "com.liferay.exportimport.background.task." +
032                            "LayoutRemoteStagingBackgroundTaskExecutor";
033    
034            public static final String LAYOUT_STAGING_BACKGROUND_TASK_EXECUTOR =
035                    "com.liferay.exportimport.background.task." +
036                            "LayoutStagingBackgroundTaskExecutor";
037    
038            public static final String PORTLET_EXPORT_BACKGROUND_TASK_EXECUTOR =
039                    "com.liferay.exportimport.background.task." +
040                            "PortletExportBackgroundTaskExecutor";
041    
042            public static final String PORTLET_IMPORT_BACKGROUND_TASK_EXECUTOR =
043                    "com.liferay.exportimport.background.task." +
044                            "PortletImportBackgroundTaskExecutor";
045    
046            public static final String PORTLET_STAGING_BACKGROUND_TASK_EXECUTOR =
047                    "com.liferay.exportimport.background.task." +
048                            "PortletStagingBackgroundTaskExecutor";
049    
050    }