2014-10-22 12:38:44 -04:00
|
|
|
package eu.siacs.conversations.entities;
|
|
|
|
|
|
|
|
public interface Downloadable {
|
|
|
|
|
2014-11-13 15:04:05 -05:00
|
|
|
public final String[] VALID_IMAGE_EXTENSIONS = {"webp", "jpeg", "jpg", "png", "jpe"};
|
2014-11-09 04:51:54 -05:00
|
|
|
public final String[] VALID_CRYPTO_EXTENSIONS = {"pgp", "gpg", "otr"};
|
2014-10-22 12:38:44 -04:00
|
|
|
|
|
|
|
public static final int STATUS_UNKNOWN = 0x200;
|
|
|
|
public static final int STATUS_CHECKING = 0x201;
|
|
|
|
public static final int STATUS_FAILED = 0x202;
|
|
|
|
public static final int STATUS_OFFER = 0x203;
|
|
|
|
public static final int STATUS_DOWNLOADING = 0x204;
|
|
|
|
public static final int STATUS_DELETED = 0x205;
|
|
|
|
public static final int STATUS_OFFER_CHECK_FILESIZE = 0x206;
|
2014-11-13 19:29:56 -05:00
|
|
|
public static final int STATUS_UPLOADING = 0x207;
|
2014-10-22 12:38:44 -04:00
|
|
|
|
|
|
|
public boolean start();
|
|
|
|
|
|
|
|
public int getStatus();
|
|
|
|
|
|
|
|
public long getFileSize();
|
2014-11-13 15:04:05 -05:00
|
|
|
|
|
|
|
public int getProgress();
|
|
|
|
|
|
|
|
public String getMimeType();
|
2014-11-15 06:37:09 -05:00
|
|
|
|
|
|
|
public void cancel();
|
2014-10-22 12:38:44 -04:00
|
|
|
}
|