blob: ac7d8ee8a79044c67d352f6d073f87a272d94221 [file] [log] [blame]
Joe Onorato1cf58742009-06-12 11:06:24 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.backup;
18
Joe Onorato5f15d152009-06-16 16:31:35 -040019import java.io.InputStream;
20
Joe Onorato1cf58742009-06-12 11:06:24 -070021/** @hide */
22public interface RestoreHelper {
Joe Onorato5f15d152009-06-16 16:31:35 -040023 /**
24 * Called by RestoreHelperDispatcher to dispatch one entity of data.
25 * <p class=note>
26 * Do not close the <code>data</code> stream. Do not read more than
27 * <code>dataSize</code> bytes from <code>data</code>.
28 */
Joe Onoratoefd0fab2009-06-17 16:20:55 -070029 public void restoreEntity(BackupDataInputStream data);
Joe Onorato1cf58742009-06-12 11:06:24 -070030}
31