use of org.openforis.collect.io.metadata.codelist.CodeListBatchExportJob in project collect by openforis.
the class CodeListsVM method batchExport.
@Command
public void batchExport() {
batchExportJob = new CodeListBatchExportJob();
batchExportJob.setJobManager(jobManager);
batchExportJob.setCodeListManager(codeListManager);
batchExportJob.setSurvey(survey);
jobManager.start(batchExportJob);
jobStatusPopUp = JobStatusPopUpVM.openPopUp(Labels.getLabel("survey.code_list.batch_export"), batchExportJob, true);
}
Aggregations