Added a method to get all message headers in a given group (untested).

This commit is contained in:
akwizgran
2011-10-25 17:12:37 +01:00
parent 995518c48b
commit 2628823db7
9 changed files with 134 additions and 8 deletions

View File

@@ -0,0 +1,7 @@
package net.sf.briar.api.protocol;
public interface MessageHeaderFactory {
MessageHeader createMessageHeader(MessageId id, MessageId parent,
GroupId group, AuthorId author, String subject, long timestamp);
}