本文整理汇总了Java中com.liferay.portal.kernel.backgroundtask.BackgroundTask类的典型用法代码示例。如果您正苦于以下问题:Java BackgroundTask类的具体用法?Java BackgroundTask怎么用?Java BackgroundTask使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BackgroundTask类属于com.liferay.portal.kernel.backgroundtask包,在下文中一共展示了BackgroundTask类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: exportTaskRecordsAsFileInBackground
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的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.BackgroundTask; //导入依赖的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.BackgroundTask; //导入依赖的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: ExportImportBackgroundTaskDisplay
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的package包/类
public ExportImportBackgroundTaskDisplay(BackgroundTask backgroundTask) {
super(backgroundTask);
Map<String, Serializable> taskContextMap = backgroundTask.getTaskContextMap();
_cmd = MapUtil.getString(taskContextMap, Constants.CMD);
_percentage = PERCENTAGE_NONE;
if (backgroundTaskStatus == null) {
_allProgressBarCountersTotal = 0;
_currentProgressBarCountersTotal = 0;
_phase = null;
_stagedModelName = null;
_stagedModelType = null;
return;
}
long allModelAdditionCountersTotal = getBackgroundTaskStatusAttributeLong("allModelAdditionCountersTotal");
long allPortletAdditionCounter = getBackgroundTaskStatusAttributeLong("allPortletAdditionCounter");
_allProgressBarCountersTotal = allModelAdditionCountersTotal + allPortletAdditionCounter;
long currentModelAdditionCountersTotal = getBackgroundTaskStatusAttributeLong(
"currentModelAdditionCountersTotal");
long currentPortletAdditionCounter = getBackgroundTaskStatusAttributeLong("currentPortletAdditionCounter");
_currentProgressBarCountersTotal = currentModelAdditionCountersTotal + currentPortletAdditionCounter;
_phase = getBackgroundTaskStatusAttributeString("phase");
_stagedModelName = getBackgroundTaskStatusAttributeString("stagedModelName");
_stagedModelType = getBackgroundTaskStatusAttributeString("stagedModelType");
}
示例5: execute
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的package包/类
@Override
public BackgroundTaskResult execute(BackgroundTask backgroundTask) throws Exception {
ExportImportConfiguration exportImportConfiguration = getExportImportConfiguration(backgroundTask);
List<FileEntry> attachmentsFileEntries = backgroundTask.getAttachmentsFileEntries();
File file = null;
for (FileEntry attachmentsFileEntry : attachmentsFileEntries) {
try {
file = FileUtil.createTempFile("lar");
FileUtil.write(file, attachmentsFileEntry.getContentStream());
_log.info(file.getAbsoluteFile());
TransactionInvokerUtil.invoke(transactionConfig,
new TaskRecordImportCallable(exportImportConfiguration, file));
} catch (Throwable t) {
if (_log.isDebugEnabled()) {
_log.debug(t, t);
} else if (_log.isWarnEnabled()) {
_log.warn("Unable to import taskRecords: " + t.getMessage());
}
throw new SystemException(t);
} finally {
FileUtil.delete(file);
}
}
return BackgroundTaskResult.SUCCESS;
}
示例6: handleException
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的package包/类
@Override
public String handleException(BackgroundTask backgroundTask, Exception e) {
JSONObject jsonObject = StagingUtil.getExceptionMessagesJSONObject(getLocale(backgroundTask), e,
getExportImportConfiguration(backgroundTask));
return jsonObject.toString();
}
示例7: execute
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的package包/类
@Override
public BackgroundTaskResult execute(BackgroundTask backgroundTask) throws Exception {
ExportImportConfiguration exportImportConfiguration = getExportImportConfiguration(backgroundTask);
List<FileEntry> attachmentsFileEntries = backgroundTask.getAttachmentsFileEntries();
File file = null;
for (FileEntry attachmentsFileEntry : attachmentsFileEntries) {
try {
file = FileUtil.createTempFile("lar");
FileUtil.write(file, attachmentsFileEntry.getContentStream());
_log.info(file.getAbsoluteFile());
TransactionInvokerUtil.invoke(transactionConfig,
new ContactImportCallable(exportImportConfiguration, file));
} catch (Throwable t) {
if (_log.isDebugEnabled()) {
_log.debug(t, t);
} else if (_log.isWarnEnabled()) {
_log.warn("Unable to import contacts: " + t.getMessage());
}
throw new SystemException(t);
} finally {
FileUtil.delete(file);
}
}
return BackgroundTaskResult.SUCCESS;
}
示例8: exportMeasurementsAsFileInBackground
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的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();
}
示例9: execute
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的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;
}
示例10: getBackgroundTaskDisplay
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的package包/类
@Override
public BackgroundTaskDisplay getBackgroundTaskDisplay(BackgroundTask backgroundTask) {
return new ExportImportBackgroundTaskDisplay(backgroundTask);
}
示例11: importTaskRecordsInBackground
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的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();
}
示例12: execute
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的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;
}
示例13: importContactsInBackground
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的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();
}
示例14: execute
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的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;
}
示例15: execute
import com.liferay.portal.kernel.backgroundtask.BackgroundTask; //导入依赖的package包/类
@Override
public BackgroundTaskResult execute(BackgroundTask backgroundTask) throws Exception {
ExportImportConfiguration exportImportConfiguration = getExportImportConfiguration(backgroundTask);
long userId = exportImportConfiguration.getUserId();
List<FileEntry> attachmentsFileEntries = backgroundTask.getAttachmentsFileEntries();
File file = null;
for (FileEntry attachmentsFileEntry : attachmentsFileEntries) {
try {
String extension = attachmentsFileEntry.getExtension();
file = FileUtil.createTempFile(extension);
// Setup a permissionChecker for the user configured to own
// scheduled import.
PrincipalThreadLocal.setName(userId);
PermissionChecker permissionChecker = PermissionCheckerFactoryUtil
.create(UserLocalServiceUtil.getUser(userId));
PermissionThreadLocal.setPermissionChecker(permissionChecker);
FileUtil.write(file, attachmentsFileEntry.getContentStream());
TransactionInvokerUtil.invoke(transactionConfig,
new MeasurementImportCallable(exportImportConfiguration, file));
} catch (Throwable t) {
if (_log.isDebugEnabled()) {
_log.debug(t, t);
} else if (_log.isWarnEnabled()) {
_log.warn("Unable to import measurements: " + t.getMessage());
}
throw new SystemException(t);
} finally {
FileUtil.delete(file);
}
}
return BackgroundTaskResult.SUCCESS;
}