X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/91e50a97a527a27d134836f89c01d52ffaf1c20d..db87c22150ad8a0697ad5191f379647ca1c8ca50:/src/com/owncloud/android/syncadapter/FileSyncService.java?ds=inline diff --git a/src/com/owncloud/android/syncadapter/FileSyncService.java b/src/com/owncloud/android/syncadapter/FileSyncService.java index d3472658..06c8e850 100644 --- a/src/com/owncloud/android/syncadapter/FileSyncService.java +++ b/src/com/owncloud/android/syncadapter/FileSyncService.java @@ -22,12 +22,15 @@ import android.content.Intent; import android.os.IBinder; /** - * Background service for syncing files to our local Database + * Background service for synchronizing remote files with their local state. * - * @author Bartek Przybylski + * Serves as a connector to an instance of {@link FileSyncAdapter}, as required by standard Android APIs. * + * @author Bartek Przybylski + * @author David A. Velasco */ public class FileSyncService extends Service { + public static final String SYNC_MESSAGE = "ACCOUNT_SYNC"; public static final String SYNC_FOLDER_REMOTE_PATH = "SYNC_FOLDER_REMOTE_PATH"; public static final String IN_PROGRESS = "SYNC_IN_PROGRESS"; @@ -51,4 +54,5 @@ public class FileSyncService extends Service { public IBinder onBind(Intent intent) { return new FileSyncAdapter(getApplicationContext(), true).getSyncAdapterBinder(); } + }