Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
439 B
Java
Raw Normal View History

package stirling.software.SPDF.config.interfaces;
import java.sql.SQLException;
import java.util.List;
2025-05-22 11:17:08 +01:00
import stirling.software.common.model.FileInfo;
2025-04-28 17:36:27 +01:00
import stirling.software.common.model.exception.UnsupportedProviderException;
public interface DatabaseInterface {
void exportDatabase() throws SQLException, UnsupportedProviderException;
void importDatabase();
boolean hasBackup();
List<FileInfo> getBackupList();
}