ReconnectionActivity.java 1.44 KB
Newer Older
Alexander Ivanov's avatar
Alexander Ivanov committed
1 2
/**
 * Copyright (c) 2013, Redsolution LTD. All rights reserved.
3
 *
Alexander Ivanov's avatar
Alexander Ivanov committed
4 5
 * This file is part of Xabber project; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License, Version 3.
6
 *
Alexander Ivanov's avatar
Alexander Ivanov committed
7 8 9 10
 * Xabber is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
11
 *
Alexander Ivanov's avatar
Alexander Ivanov committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 * You should have received a copy of the GNU General Public License,
 * along with this program. If not, see http://www.gnu.org/licenses/.
 */
package com.xabber.android.ui;

import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;

import com.xabber.android.data.LogManager;
import com.xabber.android.data.connection.ConnectionManager;

/**
 * Activity launched from notification bar to reconnect disconnected accounts.
27
 *
Alexander Ivanov's avatar
Alexander Ivanov committed
28 29 30 31
 * @author alexander.ivanov
 */
public class ReconnectionActivity extends Activity {

32 33 34 35 36 37 38 39
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        LogManager.i(this, "onReconnect");
        ConnectionManager.getInstance().updateConnections(false);
        startActivity(ContactList.createPersistentIntent(this));
        finish();
    }
Alexander Ivanov's avatar
Alexander Ivanov committed
40

41 42 43
    public static Intent createIntent(Context context) {
        return new Intent(context, ReconnectionActivity.class);
    }
Alexander Ivanov's avatar
Alexander Ivanov committed
44 45

}