blob: b1b8d90b3db9400249797f7951e8891e8efa5cd2 (
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 has been configured with proper settings,
* such as saving directory and level path.
*/
public interface ConfiguredBackupMethod {
/**
* Perform a backup with given method. The backup will be saved as the given name.
* Note: real file name depends on the backup type.
*
* @return backup result.
*/
BackupFeedback backup() throws IOException;
boolean restore() throws IOException;
}
|