3a9f336c3daa59574f4dede0c958a1f9cb8939c4
[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 }