mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
24 lines
462 B
Java
24 lines
462 B
Java
package org.briarproject.android.groups;
|
|
|
|
import java.util.Collection;
|
|
|
|
import org.briarproject.api.Contact;
|
|
import org.briarproject.api.messaging.Group;
|
|
|
|
class AvailableGroupsItem {
|
|
|
|
private final GroupContacts groupContacts;
|
|
|
|
AvailableGroupsItem(GroupContacts groupContacts) {
|
|
this.groupContacts = groupContacts;
|
|
}
|
|
|
|
Group getGroup() {
|
|
return groupContacts.getGroup();
|
|
}
|
|
|
|
Collection<Contact> getContacts() {
|
|
return groupContacts.getContacts();
|
|
}
|
|
}
|