blob: b2c7e84988e53fa685920ee1d19149b0f76a7f9f [file] [log] [blame]
Alexandre Savardfccd1dc2012-10-17 17:31:38 -04001/**
2 * Copyright (C) 2010-2012 Regis Montoya (aka r3gis - www.r3gis.fr)
3 * Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
4 *
5 * Author: Alexandre Savard <alexandre.savard@savoirfairelinux.com>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 * If you own a pjsip commercial license you can also redistribute it
12 * and/or modify it under the terms of the GNU Lesser General Public License
13 * as an android library.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 */
23package com.savoirfairelinux.sflphone.service;
24
25import android.util.Log;
26
27public class ConfigurationManagerCallback extends ConfigurationCallback {
28 private static final String TAG = "ConfigurationManagerCallback";
29
30 @Override
31 public void on_account_state_changed() {
32 Log.i(TAG, "on_account_state_changed ninja!!!!!!!!!!!!!!");
33 }
34}