Package org.seedstack.business.data
Interface DataExporter<T>
-
- Type Parameters:
T- the type this data exporter handles.
public interface DataExporter<T>Implement this interface to create a data set exporter that will handle objects of a specific type. A data exporter must be marked with aDataSetannotation to be recognized.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stream<T>exportData()This method is called by SEED to export data handled by this exporter.Class<T>getExportedClass()Returns the data class managed by the exporter.
-