Data Export Management - moritzmars/ScienceDataManagement GitHub Wiki
Define, edit or delete data export instanes inside the data export management tab.
- Click on the Create New Data Export Instance button.
- On the new data export instance site, enter a name and the data export instance code and click afterwards on save.
- Name: Name of the data export instance.
- Groovy Code: Groovy Code of the data export instance. The code must implement the IExportScientificPaperMetaInformation. Example code (only fist part):
' ... public class ExcelDataExport implements IExportScientificPaperMetaInformation { @Override public void export(Map<String, List> dataToExport, OutputStream outputStream) throws Exception { ... '
- Select a defined data export instance and click on Edit Data Export Definition.
- You can now change the data export definition. Click on safe to safe your changes.
- Name: Name of the data export instance.
- Groovy Code: Groovy Code of the data export instance. The code must implement the IExportScientificPaperMetaInformation interace.
- Select the data export instance, which you want to delete and click Delete Data Export Instance. The data export instane will immediately be deleted. Attention: The deletion will immedidately executed without any approval dialog.