blob: bd249d0a3f9e2d3d74ef2eaab9fa52363fefaca2 [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/**
20 * An interface that contains the callback used by the AccountMonitor
21 */
Fred Quintanad9d2f112009-04-23 13:36:27 -070022public interface OnAccountsUpdatedListener {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023 /**
24 * This invoked when the AccountMonitor starts up and whenever the account
25 * 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}