mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-20 17:57:29 +00:00
1) Refactored MMS layer to use abstracted types. 2) Added support for retrieving attachment IDs.
19 lines
296 B
Java
19 lines
296 B
Java
package org.whispersystems.textsecure.push;
|
|
|
|
import java.util.List;
|
|
|
|
public class PushMessageResponse {
|
|
private List<String> success;
|
|
private List<String> failure;
|
|
|
|
public List<String> getSuccess() {
|
|
return success;
|
|
}
|
|
|
|
public List<String> getFailure() {
|
|
return failure;
|
|
}
|
|
|
|
|
|
}
|