blob: f2a3789fa4b099a5c70ac906bf03df92786d3559 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package com.keuin.kbackupfabric;
public class KBMain {
/**
* Perform real backup process.
*
* @param backupName the backup name.
* @return true if success, false if failed.
*/
public static boolean backup(String backupName) {
return true;
}
/**
* Perform real restore process.
*
* @param backupName the backup name.
* @return true if success, false if failed.
*/
public static boolean restore(String backupName) {
return true;
}
}
|