blob: 7afbabd30025354ae287f8338a4a3cde5e9100f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package com.keuin.kbackupfabric.operation.backup.method;
import com.keuin.kbackupfabric.operation.backup.feedback.BackupFeedback;
import java.io.IOException;
/**
* Provide specific backup method, which is implemented statelessly.
*/
public interface BackupMethod {
/**
* Perform a backup with given method. The backup will be saved as the given name.
* Note: real file name depends on the backup type.
*
* @param customBackupName the custom backup name.
* @return if the backup operation succeed.
*/
BackupFeedback backup(String customBackupName, String levelPath, String backupSaveDirectory) throws IOException;
boolean restore(String backupName, String levelPath, String backupSaveDirectory) throws IOException;
}
|