2025-01-06 18:58:26 +00:00
|
|
|
package stirling.software.SPDF.config.interfaces;
|
|
|
|
|
|
|
|
|
|
import java.sql.SQLException;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2025-02-24 22:18:34 +00:00
|
|
|
import stirling.software.SPDF.model.exception.UnsupportedProviderException;
|
2025-01-06 18:58:26 +00:00
|
|
|
import stirling.software.SPDF.utils.FileInfo;
|
|
|
|
|
|
|
|
|
|
public interface DatabaseInterface {
|
|
|
|
|
void exportDatabase() throws SQLException, UnsupportedProviderException;
|
|
|
|
|
|
|
|
|
|
void importDatabase();
|
|
|
|
|
|
|
|
|
|
boolean hasBackup();
|
|
|
|
|
|
|
|
|
|
List<FileInfo> getBackupList();
|
|
|
|
|
}
|