2013-08-21 17:25:19 -07:00
|
|
|
package org.thoughtcrime.securesms.sms;
|
|
|
|
|
2015-03-11 14:23:45 -07:00
|
|
|
public class IncomingPreKeyBundleMessage extends IncomingTextMessage {
|
2013-08-21 17:25:19 -07:00
|
|
|
|
|
|
|
public IncomingPreKeyBundleMessage(IncomingTextMessage base, String newBody) {
|
|
|
|
super(base, newBody);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IncomingPreKeyBundleMessage withMessageBody(String messageBody) {
|
|
|
|
return new IncomingPreKeyBundleMessage(this, messageBody);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isPreKeyBundle() {
|
|
|
|
return true;
|
|
|
|
}
|
2015-03-11 14:23:45 -07:00
|
|
|
|
2013-08-21 17:25:19 -07:00
|
|
|
}
|