mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
13 lines
368 B
Java
13 lines
368 B
Java
package org.briarproject.api.messaging;
|
|
|
|
import org.briarproject.api.FormatException;
|
|
import org.briarproject.api.sync.GroupId;
|
|
import org.briarproject.api.sync.MessageId;
|
|
|
|
public interface PrivateMessageFactory {
|
|
|
|
PrivateMessage createPrivateMessage(GroupId groupId, long timestamp,
|
|
MessageId parent, String contentType, byte[] body)
|
|
throws FormatException;
|
|
}
|