aboutsummaryrefslogtreecommitdiffstats
path: root/conversations/src/main/java/eu/siacs/conversations/entities/Downloadable.java
blob: 70516b204ddf26a1d5d8ade0f17b29633d623ff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package eu.siacs.conversations.entities;

public interface Downloadable {

	public final String[] VALID_EXTENSIONS = { "webp", "jpeg", "jpg", "png" };
	public final String[] VALID_CRYPTO_EXTENSIONS = { "pgp", "gpg", "otr" };

	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;

	public boolean start();

	public int getStatus();

	public long getFileSize();
}