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