package de.tudarmstadt.informatik.hostage.sync.bluetooth; import android.app.IntentService; import android.bluetooth.BluetoothAdapter; import android.content.Intent; public class BluetoothSyncService extends IntentService { private ServerThread serverThread; private ClientThread clientThread; private CommunicationThread commThread; private BluetoothAdapter mBluetoothAdapter; public BluetoothSyncService() { super("BluetoothSyncService"); } @Override protected void onHandleIntent(Intent intent) { // TODO Auto-generated method stub } }