blob: 2b4ee50114bd7da011f623b94df13de44352c849 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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.accounts;
18
19/**
Amith Yamasani04e0d262012-02-14 11:50:53 -080020 * An interface that contains the callback used by the AccountManager
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021 */
Fred Quintanaf7ae77c2009-10-02 17:19:31 -070022public interface OnAccountsUpdateListener {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023 /**
Amith Yamasani04e0d262012-02-14 11:50:53 -080024 * This invoked when the AccountManager starts up and whenever the account
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025 * set changes.
Fred Quintanad9d2f112009-04-23 13:36:27 -070026 * @param accounts the current accounts
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027 */
Fred Quintanad9d2f112009-04-23 13:36:27 -070028 void onAccountsUpdated(Account[] accounts);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029}