2014-09-16 16:21:41 -07:00
|
|
|
package org.thoughtcrime.securesms.mms;
|
|
|
|
|
2015-04-13 10:56:41 -07:00
|
|
|
import android.support.annotation.NonNull;
|
2015-03-30 10:46:14 -07:00
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
|
2014-09-16 16:21:41 -07:00
|
|
|
import java.io.IOException;
|
|
|
|
|
2014-12-29 14:01:02 -08:00
|
|
|
import ws.com.google.android.mms.MmsException;
|
2014-09-16 16:21:41 -07:00
|
|
|
import ws.com.google.android.mms.pdu.RetrieveConf;
|
|
|
|
|
2014-12-29 14:01:02 -08:00
|
|
|
public interface IncomingMmsConnection {
|
2016-02-05 16:10:33 -08:00
|
|
|
@Nullable RetrieveConf retrieve(@NonNull String contentLocation, byte[] transactionId, int subscriptionId) throws MmsException, MmsRadioException, ApnUnavailableException, IOException;
|
2014-09-16 16:21:41 -07:00
|
|
|
}
|