mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-01 05:55:18 +00:00
25 lines
588 B
Java
25 lines
588 B
Java
|
package org.thoughtcrime.securesms.sms;
|
||
|
|
||
|
import org.thoughtcrime.securesms.recipients.Recipient;
|
||
|
|
||
|
public class OutgoingKeyExchangeMessage extends OutgoingTextMessage {
|
||
|
|
||
|
public OutgoingKeyExchangeMessage(Recipient recipient, String message) {
|
||
|
super(recipient, message);
|
||
|
}
|
||
|
|
||
|
private OutgoingKeyExchangeMessage(OutgoingKeyExchangeMessage base, String body) {
|
||
|
super(base, body);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public boolean isKeyExchange() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public OutgoingTextMessage withBody(String body) {
|
||
|
return new OutgoingKeyExchangeMessage(this, body);
|
||
|
}
|
||
|
}
|