mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-21 23:15:03 +00:00
18 lines
439 B
Java
18 lines
439 B
Java
package stirling.software.SPDF.config.interfaces;
|
|
|
|
import java.sql.SQLException;
|
|
import java.util.List;
|
|
|
|
import stirling.software.common.model.FileInfo;
|
|
import stirling.software.common.model.exception.UnsupportedProviderException;
|
|
|
|
public interface DatabaseInterface {
|
|
void exportDatabase() throws SQLException, UnsupportedProviderException;
|
|
|
|
void importDatabase();
|
|
|
|
boolean hasBackup();
|
|
|
|
List<FileInfo> getBackupList();
|
|
}
|