Interface | Description |
---|---|
BackupHelper |
Defines the calling interface that
BackupAgentHelper uses
when dispatching backup and restore operations to the installed helpers. |
Class | Description |
---|---|
AbsoluteFileBackupHelper |
Like FileBackupHelper, but takes absolute paths for the files instead of
subpaths of getFilesDir()
|
BackupAgent |
Provides the central interface between an
application and Android's data backup infrastructure.
|
BackupAgentHelper |
A convenient
BackupAgent wrapper class that automatically manages
heterogeneous data sets within the backup data, each identified by a unique
key prefix. |
BackupDataInput |
Provides the structured interface through which a
BackupAgent reads
information from the backup data set, via its
onRestore()
method. |
BackupDataInputStream |
Provides an
InputStream -like interface for accessing an
entity's data during a restore operation. |
BackupDataOutput |
Provides the structured interface through which a
BackupAgent commits
information to the backup data set, via its onBackup() method. |
BackupHelperDispatcher | |
BackupManager |
The interface through which an application interacts with the Android backup service to
request backup and restore operations.
|
BackupObserver |
Callback class for receiving progress reports during a backup operation.
|
BackupProgress |
Information about current progress of full data backup
Used in
BackupObserver.onUpdate(String, BackupProgress) |
BackupTransport |
Concrete class that provides a stable-API bridge between IBackupTransport
and its implementations.
|
BlobBackupHelper |
Utility class for writing BackupHelpers whose underlying data is a
fixed set of byte-array blobs.
|
FileBackupHelper |
A helper class that can be used in conjunction with
BackupAgentHelper to manage the backup of a set of
files. |
FullBackup |
Global constant definitions et cetera related to the full-backup-to-fd
binary format.
|
FullBackup.BackupScheme | |
FullBackupAgent |
Simple concrete class that merely provides the default BackupAgent full backup/restore
implementations for applications that do not supply their own.
|
FullBackupDataOutput |
Provides the interface through which a
BackupAgent writes entire files
to a full backup data set, via its BackupAgent.onFullBackup(FullBackupDataOutput)
method. |
RestoreDescription |
Description of the available restore data for a given package.
|
RestoreObserver |
Callback class for receiving progress reports during a restore operation.
|
RestoreSession |
Interface for managing a restore session.
|
RestoreSet |
Descriptive information about a set of backed-up app data available for restore.
|
SharedPreferencesBackupHelper |
A helper class that can be used in conjunction with
BackupAgentHelper to manage the backup of
SharedPreferences . |
WallpaperBackupHelper |
Helper for backing up / restoring wallpapers.
|