summaryrefslogtreecommitdiff
path: root/core/java/android/backup/BackupHelperAgent.java
diff options
context:
space:
mode:
authorChristopher Tate <ctate@google.com>2010-03-05 15:46:30 -0800
committerChristopher Tate <ctate@google.com>2010-03-05 16:27:15 -0800
commit4528186e0d65fc68ef0dd1941aa2ac8aefcd55a3 (patch)
tree3f1276aef1448aad75a0d44ad1abbbd1478a4937 /core/java/android/backup/BackupHelperAgent.java
parent931bf89d327ecf07301231fd86b17deac535feaa (diff)
Refactor android.backup => android.app.backup
Change-Id: I0b21316ff890d7f3c7d4b82837bb60670724c2e8
Diffstat (limited to 'core/java/android/backup/BackupHelperAgent.java')
-rw-r--r--core/java/android/backup/BackupHelperAgent.java77
1 files changed, 0 insertions, 77 deletions
diff --git a/core/java/android/backup/BackupHelperAgent.java b/core/java/android/backup/BackupHelperAgent.java
deleted file mode 100644
index 7fb44f48c92d..000000000000
--- a/core/java/android/backup/BackupHelperAgent.java
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- * Copyright (C) 2007 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package android.backup;
-
-import android.app.BackupAgent;
-import android.os.ParcelFileDescriptor;
-
-import java.io.IOException;
-
-/**
- * A convenient BackupAgent wrapper class that automatically manages
- * heterogeneous data sets within the backup data, each identified by a unique
- * key prefix. An application will typically extend this class in their own
- * backup agent. Then, within the agent's onBackup() and onRestore() methods, it
- * will call {@link #addHelper(String, BackupHelper)} one or more times to
- * specify the data sets, then invoke super.onBackup() or super.onRestore() to
- * have the BackupHelperAgent implementation process the data.
- * <p>
- * STOPSHIP: document!
- */
-public class BackupHelperAgent extends BackupAgent {
- static final String TAG = "BackupHelperAgent";
-
- BackupHelperDispatcher mDispatcher = new BackupHelperDispatcher();
-
- /**
- * Run the backup process on each of the configured handlers.
- */
- @Override
- public void onBackup(ParcelFileDescriptor oldState, BackupDataOutput data,
- ParcelFileDescriptor newState) throws IOException {
- mDispatcher.performBackup(oldState, data, newState);
- }
-
- /**
- * Run the restore process on each of the configured handlers.
- */
- @Override
- public void onRestore(BackupDataInput data, int appVersionCode, ParcelFileDescriptor newState)
- throws IOException {
- mDispatcher.performRestore(data, appVersionCode, newState);
- }
-
- /** @hide */
- public BackupHelperDispatcher getDispatcher() {
- return mDispatcher;
- }
-
- /**
- * Add a helper for a given data subset to the agent's configuration. Each helper
- * must have a prefix string that is unique within this backup agent's set of
- * helpers.
- *
- * @param keyPrefix A string used to disambiguate the various helpers within this agent
- * @param helper A backup/restore helper object to be invoked during backup and restore
- * operations.
- */
- public void addHelper(String keyPrefix, BackupHelper helper) {
- mDispatcher.addHelper(keyPrefix, helper);
- }
-}
-
-