2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.entities;
|
|
|
|
|
2015-07-10 13:11:03 +00:00
|
|
|
public interface Transferable {
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2015-06-28 09:19:07 +00:00
|
|
|
String[] VALID_IMAGE_EXTENSIONS = {"webp", "jpeg", "jpg", "png", "jpe"};
|
|
|
|
String[] VALID_CRYPTO_EXTENSIONS = {"pgp", "gpg", "otr"};
|
2015-09-12 08:42:56 +00:00
|
|
|
String[] WELL_KNOWN_EXTENSIONS = {"pdf","m4a","mp4"};
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2015-06-28 09:19:07 +00:00
|
|
|
int STATUS_UNKNOWN = 0x200;
|
|
|
|
int STATUS_CHECKING = 0x201;
|
|
|
|
int STATUS_FAILED = 0x202;
|
|
|
|
int STATUS_OFFER = 0x203;
|
|
|
|
int STATUS_DOWNLOADING = 0x204;
|
|
|
|
int STATUS_DELETED = 0x205;
|
|
|
|
int STATUS_OFFER_CHECK_FILESIZE = 0x206;
|
|
|
|
int STATUS_UPLOADING = 0x207;
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2015-07-02 21:19:50 +00:00
|
|
|
|
2015-06-28 09:19:07 +00:00
|
|
|
boolean start();
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2015-06-28 09:19:07 +00:00
|
|
|
int getStatus();
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2015-06-28 09:19:07 +00:00
|
|
|
long getFileSize();
|
2014-11-13 20:04:05 +00:00
|
|
|
|
2015-06-28 09:19:07 +00:00
|
|
|
int getProgress();
|
2014-11-13 20:04:05 +00:00
|
|
|
|
2015-06-28 09:19:07 +00:00
|
|
|
void cancel();
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|