Download service refactoring: multiple downloads and cancellation support
[pub/Android/ownCloud.git] / src / com / owncloud / android / ui / activity / TransferServiceGetter.java
1 package com.owncloud.android.ui.activity;
2
3 import com.owncloud.android.files.services.FileDownloader.FileDownloaderBinder;
4
5 public interface TransferServiceGetter {
6
7 /**
8 * Callback method invoked when the parent activity is fully created to get a reference to the FileDownloader service API.
9 *
10 * @return Directory to list firstly. Can be NULL.
11 */
12 public FileDownloaderBinder getFileDownloaderBinder();
13
14
15 }