本文整理匯總了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;
}