[core] Add MessagingManager#getAttachment()

This commit is contained in:
Torsten Grote
2018-11-02 18:38:47 -03:00
parent 934f14ef31
commit 483106e00c
2 changed files with 18 additions and 0 deletions

View File

@@ -46,4 +46,9 @@ public interface MessagingManager extends ConversationClient {
*/
String getMessageText(MessageId m) throws DbException;
/**
* Returns the attachment with the given ID.
*/
Attachment getAttachment(MessageId m) throws DbException;
}