2014-09-08 20:09:44 +02:00
|
|
|
package eu.siacs.conversations.entities;
|
|
|
|
|
|
|
|
public interface Downloadable {
|
2014-10-14 01:06:45 +02:00
|
|
|
|
|
|
|
public final String[] VALID_EXTENSIONS = { "webp", "jpeg", "jpg", "png" };
|
|
|
|
public final String[] VALID_CRYPTO_EXTENSIONS = { "pgp", "gpg", "otr" };
|
|
|
|
|
2014-09-08 20:09:44 +02:00
|
|
|
public void start();
|
|
|
|
}
|