mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Show avatars for contacts outside AuthorView
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package org.briarproject.briar.api.identity;
|
||||
|
||||
import org.briarproject.bramble.api.contact.Contact;
|
||||
import org.briarproject.bramble.api.db.DbException;
|
||||
import org.briarproject.bramble.api.db.Transaction;
|
||||
import org.briarproject.bramble.api.identity.AuthorId;
|
||||
@@ -19,6 +20,17 @@ public interface AuthorManager {
|
||||
*/
|
||||
AuthorInfo getAuthorInfo(Transaction txn, AuthorId a) throws DbException;
|
||||
|
||||
/**
|
||||
* Returns the {@link AuthorInfo} for the given contact.
|
||||
*/
|
||||
AuthorInfo getAuthorInfo(Contact c) throws DbException;
|
||||
|
||||
/**
|
||||
* Returns the {@link AuthorInfo} for the given contact.
|
||||
*/
|
||||
AuthorInfo getAuthorInfo(Transaction txn, Contact c)
|
||||
throws DbException;
|
||||
|
||||
/**
|
||||
* Returns the {@link AuthorInfo} for the {@link LocalAuthor}.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user