本文整理匯總了Java中com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil類的典型用法代碼示例。如果您正苦於以下問題:Java BackgroundTaskManagerUtil類的具體用法?Java BackgroundTaskManagerUtil怎麽用?Java BackgroundTaskManagerUtil使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
BackgroundTaskManagerUtil類屬於com.liferay.portal.kernel.backgroundtask包,在下文中一共展示了BackgroundTaskManagerUtil類的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: exportTaskRecordsAsFileInBackground
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public long exportTaskRecordsAsFileInBackground(long userId, ExportImportConfiguration exportImportConfiguration)
throws PortalException {
// TODO: The export may have different file types / extensions:
// - .csv
// - .xml
// - .txt
// - .json
// if
// (!DLValidatorUtil.isValidName(exportImportConfiguration.getName())) {
// throw new LARFileNameException(exportImportConfiguration.getName());
// }
Map<String, Serializable> taskContextMap = new HashMap<>();
taskContextMap.put("exportImportConfigurationId", exportImportConfiguration.getExportImportConfigurationId());
BackgroundTask backgroundTask = BackgroundTaskManagerUtil.addBackgroundTask(userId,
exportImportConfiguration.getGroupId(), exportImportConfiguration.getName(),
TaskRecordExportBackgroundTaskExecutor.class.getName(), taskContextMap, new ServiceContext());
return backgroundTask.getBackgroundTaskId();
}
示例2: exportContactsAsFileInBackground
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public long exportContactsAsFileInBackground(long userId, ExportImportConfiguration exportImportConfiguration)
throws PortalException {
// TODO: The export may have different file types / extensions:
// - .csv
// - .xml
// - .txt
// - .json
// if
// (!DLValidatorUtil.isValidName(exportImportConfiguration.getName())) {
// throw new LARFileNameException(exportImportConfiguration.getName());
// }
Map<String, Serializable> taskContextMap = new HashMap<>();
taskContextMap.put("exportImportConfigurationId", exportImportConfiguration.getExportImportConfigurationId());
BackgroundTask backgroundTask = BackgroundTaskManagerUtil.addBackgroundTask(userId,
exportImportConfiguration.getGroupId(), exportImportConfiguration.getName(),
ContactExportBackgroundTaskExecutor.class.getName(), taskContextMap, new ServiceContext());
return backgroundTask.getBackgroundTaskId();
}
示例3: importMeasurementsInBackground
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public long importMeasurementsInBackground(long userId,
ExportImportConfiguration exportImportConfiguration, File file)
throws PortalException {
_log.info("importMeasurementsInBackground()");
Map<String, Serializable> taskContextMap = new HashMap<>();
taskContextMap.put("exportImportConfigurationId",
exportImportConfiguration.getExportImportConfigurationId());
BackgroundTask backgroundTask = BackgroundTaskManagerUtil
.addBackgroundTask(userId,
exportImportConfiguration.getGroupId(),
exportImportConfiguration.getName(),
MeasurementImportBackgroundTaskExecutor.class.getName(),
taskContextMap, new ServiceContext());
backgroundTask.addAttachment(userId, file.getName(), file);
return backgroundTask.getBackgroundTaskId();
}
示例4: exportMeasurementsAsFileInBackground
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public long exportMeasurementsAsFileInBackground(long userId,
ExportImportConfiguration exportImportConfiguration)
throws PortalException {
// TODO: The export may have different file types / extensions:
// - .csv
// - .xml
// - .txt
// - .json
// if
// (!DLValidatorUtil.isValidName(exportImportConfiguration.getName())) {
// throw new LARFileNameException(exportImportConfiguration.getName());
// }
Map<String, Serializable> taskContextMap = new HashMap<>();
taskContextMap.put("exportImportConfigurationId",
exportImportConfiguration.getExportImportConfigurationId());
BackgroundTask backgroundTask = BackgroundTaskManagerUtil
.addBackgroundTask(userId,
exportImportConfiguration.getGroupId(),
exportImportConfiguration.getName(),
MeasurementExportBackgroundTaskExecutor.class.getName(),
taskContextMap, new ServiceContext());
return backgroundTask.getBackgroundTaskId();
}
示例5: execute
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public BackgroundTaskResult execute(BackgroundTask backgroundTask) throws PortalException {
ExportImportConfiguration exportImportConfiguration = getExportImportConfiguration(backgroundTask);
long userId = backgroundTask.getUserId();
StringBundler sb = new StringBundler(4);
sb.append(StringUtil.replace(exportImportConfiguration.getName(), CharPool.SPACE, CharPool.UNDERLINE));
sb.append(StringPool.DASH);
sb.append(Time.getTimestamp());
sb.append(".zip");
File xmlFile = TaskRecordLocalServiceUtil.exportTaskRecordsAsFile(exportImportConfiguration);
BackgroundTaskManagerUtil.addBackgroundTaskAttachment(userId, backgroundTask.getBackgroundTaskId(),
sb.toString(), xmlFile);
return BackgroundTaskResult.SUCCESS;
}
示例6: importTaskRecordsInBackground
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public long importTaskRecordsInBackground(long userId, ExportImportConfiguration exportImportConfiguration,
File file) throws PortalException {
Map<String, Serializable> taskContextMap = new HashMap<>();
taskContextMap.put("exportImportConfigurationId", exportImportConfiguration.getExportImportConfigurationId());
BackgroundTask backgroundTask = BackgroundTaskManagerUtil.addBackgroundTask(userId,
exportImportConfiguration.getGroupId(), exportImportConfiguration.getName(),
TaskRecordImportBackgroundTaskExecutor.class.getName(), taskContextMap, new ServiceContext());
backgroundTask.addAttachment(userId, file.getName(), file);
return backgroundTask.getBackgroundTaskId();
}
示例7: execute
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public BackgroundTaskResult execute(BackgroundTask backgroundTask) throws PortalException {
ExportImportConfiguration exportImportConfiguration = getExportImportConfiguration(backgroundTask);
long userId = backgroundTask.getUserId();
StringBundler sb = new StringBundler(4);
sb.append(StringUtil.replace(exportImportConfiguration.getName(), CharPool.SPACE, CharPool.UNDERLINE));
sb.append(StringPool.DASH);
sb.append(Time.getTimestamp());
sb.append(".zip");
File xmlFile = ContactLocalServiceUtil.exportContactsAsFile(exportImportConfiguration);
BackgroundTaskManagerUtil.addBackgroundTaskAttachment(userId, backgroundTask.getBackgroundTaskId(),
sb.toString(), xmlFile);
return BackgroundTaskResult.SUCCESS;
}
示例8: importContactsInBackground
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public long importContactsInBackground(long userId, ExportImportConfiguration exportImportConfiguration, File file)
throws PortalException {
Map<String, Serializable> taskContextMap = new HashMap<>();
taskContextMap.put("exportImportConfigurationId", exportImportConfiguration.getExportImportConfigurationId());
BackgroundTask backgroundTask = BackgroundTaskManagerUtil.addBackgroundTask(userId,
exportImportConfiguration.getGroupId(), exportImportConfiguration.getName(),
ContactImportBackgroundTaskExecutor.class.getName(), taskContextMap, new ServiceContext());
backgroundTask.addAttachment(userId, file.getName(), file);
return backgroundTask.getBackgroundTaskId();
}
示例9: execute
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public BackgroundTaskResult execute(BackgroundTask backgroundTask) throws PortalException {
ExportImportConfiguration exportImportConfiguration = getExportImportConfiguration(backgroundTask);
long userId = backgroundTask.getUserId();
StringBundler sb = new StringBundler(4);
sb.append(StringUtil.replace(exportImportConfiguration.getName(), CharPool.SPACE, CharPool.UNDERLINE));
sb.append(StringPool.DASH);
sb.append(Time.getTimestamp());
sb.append(".zip");
File xmlFile = MeasurementLocalServiceUtil.exportMeasurementsAsFile(exportImportConfiguration);
BackgroundTaskManagerUtil.addBackgroundTaskAttachment(userId, backgroundTask.getBackgroundTaskId(),
sb.toString(), xmlFile);
return BackgroundTaskResult.SUCCESS;
}
示例10: deleteBackgroundTask
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public void deleteBackgroundTask(long groupId, long backgroundTaskId) throws PortalException {
TimetrackerPortletPermission.check(getPermissionChecker(), groupId, TimetrackerActionKeys.EXPORT_IMPORT_TASK_RECORDS);
BackgroundTaskManagerUtil.deleteBackgroundTask(backgroundTaskId);
}
示例11: deleteBackgroundTask
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public void deleteBackgroundTask(long groupId, long backgroundTaskId) throws PortalException {
ContactManagerPortletPermission.check(getPermissionChecker(), groupId, ContactManagerActionKeys.EXPORT_IMPORT_CONTACTS);
BackgroundTaskManagerUtil.deleteBackgroundTask(backgroundTaskId);
}
示例12: deleteBackgroundTask
import com.liferay.portal.kernel.backgroundtask.BackgroundTaskManagerUtil; //導入依賴的package包/類
@Override
public void deleteBackgroundTask(long groupId, long backgroundTaskId)
throws PortalException {
DataManagerPortletPermission.check(getPermissionChecker(), groupId,
MeasurementActionKeys.EXPORT_IMPORT_MEASUREMENTS);
BackgroundTaskManagerUtil.deleteBackgroundTask(backgroundTaskId);
}