mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
97 lines
2.0 KiB
Java
97 lines
2.0 KiB
Java
package org.briarproject;
|
|
|
|
import java.io.ByteArrayInputStream;
|
|
import java.io.InputStream;
|
|
|
|
import org.briarproject.api.Author;
|
|
import org.briarproject.api.messaging.Group;
|
|
import org.briarproject.api.messaging.Message;
|
|
import org.briarproject.api.messaging.MessageId;
|
|
|
|
public class TestMessage implements Message {
|
|
|
|
private final MessageId id, parent;
|
|
private final Group group;
|
|
private final Author author;
|
|
private final String contentType, subject;
|
|
private final long timestamp;
|
|
private final byte[] raw;
|
|
private final int bodyStart, bodyLength;
|
|
|
|
public TestMessage(MessageId id, MessageId parent, Group group,
|
|
Author author, String contentType, String subject, long timestamp,
|
|
byte[] raw) {
|
|
this(id, parent, group, author, contentType, subject, timestamp, raw, 0,
|
|
raw.length);
|
|
}
|
|
|
|
public TestMessage(MessageId id, MessageId parent, Group group,
|
|
Author author, String contentType, String subject, long timestamp,
|
|
byte[] raw, int bodyStart, int bodyLength) {
|
|
this.id = id;
|
|
this.parent = parent;
|
|
this.group = group;
|
|
this.author = author;
|
|
this.contentType = contentType;
|
|
this.subject = subject;
|
|
this.timestamp = timestamp;
|
|
this.raw = raw;
|
|
this.bodyStart = bodyStart;
|
|
this.bodyLength = bodyLength;
|
|
}
|
|
|
|
public MessageId getId() {
|
|
return id;
|
|
}
|
|
|
|
public MessageId getParent() {
|
|
return parent;
|
|
}
|
|
|
|
public Group getGroup() {
|
|
return group;
|
|
}
|
|
|
|
public Author getAuthor() {
|
|
return author;
|
|
}
|
|
|
|
public String getContentType() {
|
|
return contentType;
|
|
}
|
|
|
|
public String getSubject() {
|
|
return subject;
|
|
}
|
|
|
|
public long getTimestamp() {
|
|
return timestamp;
|
|
}
|
|
|
|
public byte[] getSerialised() {
|
|
return raw;
|
|
}
|
|
|
|
public int getBodyStart() {
|
|
return bodyStart;
|
|
}
|
|
|
|
public int getBodyLength() {
|
|
return bodyLength;
|
|
}
|
|
|
|
public InputStream getSerialisedStream() {
|
|
return new ByteArrayInputStream(raw);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return id.hashCode();
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
return o instanceof Message && id.equals(((Message)o).getId());
|
|
}
|
|
}
|