package org.thoughtcrime.securesms.mms; import org.thoughtcrime.securesms.attachments.Attachment; import org.thoughtcrime.securesms.recipients.Recipient; import java.util.List; public class OutgoingSecureMediaMessage extends OutgoingMediaMessage { public OutgoingSecureMediaMessage(Recipient recipient, String body, List attachments, long sentTimeMillis, int distributionType, long expiresIn) { super(recipient, body, attachments, sentTimeMillis, -1, expiresIn, distributionType); } public OutgoingSecureMediaMessage(OutgoingMediaMessage base) { super(base); } @Override public boolean isSecure() { return true; } }