Interface Persister
-
- All Known Implementing Classes:
ContentEntityDatabaseDataExporter
,SimpleEntityExporter
public interface Persister
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
persistObjects(Collection<Object> objectIds)
Retrieve a list of EntityObjectReadyForExport from object IDs and persist retrieved records for backup file NOTED: in order to deal with multiple underlining datatype from different DBs we will need to useAbstractDatabaseDataConverter.convertToLong(Object)
to convert ID from Object to Long
-
-
-
Method Detail
-
persistObjects
void persistObjects(Collection<Object> objectIds) throws InterruptedException, BackupRestoreException
Retrieve a list of EntityObjectReadyForExport from object IDs and persist retrieved records for backup file NOTED: in order to deal with multiple underlining datatype from different DBs we will need to useAbstractDatabaseDataConverter.convertToLong(Object)
to convert ID from Object to Long
-
-