Android Open Source - SenqmAndroid Connection Manager Service Connection






From Project

Back to project page SenqmAndroid.

License

The source code is released under:

GNU General Public License

If you think the Android project SenqmAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 *      Copyright  2014 Alban GRUIN/*  w  w  w .j a  va2 s . c om*/
 *
 *      This file is part of SenqmAndroid.
 *
 *      SenqmAndroid is free software: you can redistribute it and/or modify
 *      it under the terms of the GNU General Public License as published by
 *      the Free Software Foundation, either version 3 of the License, or
 *      (at your option) any later version.
 *
 *      SenqmAndroid 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.
 *
 *      You should have received a copy of the GNU General Public License
 *      along with SenqmAndroid.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.agrn.senqm.network.service;

import android.app.Service;
import android.content.ComponentName;
import android.content.ServiceConnection;
import android.os.IBinder;
import android.util.Log;

public class ConnectionManagerServiceConnection implements ServiceConnection
{
    private ConnectionManagerService connectionManagerService;
    private ConnectionManagerServiceBoundListener listener;

    public ConnectionManagerServiceConnection()
    {
    }

    public ConnectionManagerServiceConnection(ConnectionManagerServiceBoundListener listener)
    {
        this.listener = listener;
    }

    @Override
    public void onServiceConnected(ComponentName componentName, IBinder iBinder)
    {
        ConnectionManagerService.ConnectionManagerBinder binder =
                ((ConnectionManagerService.ConnectionManagerBinder) iBinder);
        connectionManagerService = binder.getService();

        if(listener != null)
            listener.onServiceBound(connectionManagerService);
    }

    @Override
    public void onServiceDisconnected(ComponentName componentName)
    {
    }

    public ConnectionManagerService getConnectionManagerService()
    {
        return connectionManagerService;
    }

    public void setListener(ConnectionManagerServiceBoundListener listener)
    {
        this.listener = listener;
    }
}




Java Source Code List

com.agrn.senqm.MainActivity.java
com.agrn.senqm.database.DatabaseHelper.java
com.agrn.senqm.database.entities.Computer.java
com.agrn.senqm.network.Message.java
com.agrn.senqm.network.WifiLockContainer.java
com.agrn.senqm.network.connection.ConnectionHandler.java
com.agrn.senqm.network.connection.Connection.java
com.agrn.senqm.network.service.ConnectionManagerServiceBoundListener.java
com.agrn.senqm.network.service.ConnectionManagerServiceConnection.java
com.agrn.senqm.network.service.ConnectionManagerService.java
com.agrn.senqm.telephony.PhoneBroadcaster.java
com.agrn.senqm.telephony.sms.SMSBroadcaster.java
com.agrn.senqm.telephony.sms.SendSMS.java