d61ddc9a43d2d49769e2cf9407f82ac046eec2d9
[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 import com.owncloud.android.files.services.FileUploader.FileUploaderBinder;
5
6 public interface TransferServiceGetter {
7
8 /**
9 * Callback method invoked when the parent activity is fully created to get a reference to the FileDownloader service API.
10 *
11 * @return Directory to list firstly. Can be NULL.
12 */
13 public FileDownloaderBinder getFileDownloaderBinder();
14
15
16 /**
17 * Callback method invoked when the parent activity is fully created to get a reference to the FileUploader service API.
18 *
19 * @return Directory to list firstly. Can be NULL.
20 */
21 public FileUploaderBinder getFileUploaderBinder();
22
23
24 }