2017-12-11 01:09:29 +01:00
|
|
|
class BackupRestore(object):
|
|
|
|
|
|
|
|
options = object()
|
|
|
|
canceled = None
|
|
|
|
|
|
|
|
def get_restore_info(self, *args):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def restore_do(self, *args):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_restore_info(self, *args):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def restore_info_verify(self, *args):
|
2018-07-16 02:00:28 +02:00
|
|
|
return 'test'
|
2017-12-11 01:09:29 +01:00
|
|
|
|
|
|
|
def get_restore_summary(self, *args):
|
2018-07-16 02:00:28 +02:00
|
|
|
return 'test'
|