X-Git-Url: https://git.nmode.ca/signal-cli/blobdiff_plain/5859e7b9f78b5d8963c56c66b75530ee3f094bee..27d9424f1e7f607ac2dfad5b2164d065ffb79ef7:/src/main/java/cli/TextSecure.java?ds=sidebyside diff --git a/src/main/java/cli/TextSecure.java b/src/main/java/cli/TextSecure.java deleted file mode 100644 index 3220ba00..00000000 --- a/src/main/java/cli/TextSecure.java +++ /dev/null @@ -1,17 +0,0 @@ -package cli; - -import org.freedesktop.dbus.DBusInterface; -import org.whispersystems.textsecure.api.push.exceptions.EncapsulatedExceptions; - -import java.io.IOException; -import java.util.List; - -public interface TextSecure extends DBusInterface { - void sendMessage(String message, List attachments, String recipient) throws EncapsulatedExceptions, AttachmentInvalidException, IOException; - - void sendMessage(String message, List attachments, List recipients) throws EncapsulatedExceptions, AttachmentInvalidException, IOException; - - void sendEndSessionMessage(List recipients) throws IOException, EncapsulatedExceptions; - - void sendGroupMessage(String message, List attachments, byte[] groupId) throws EncapsulatedExceptions, GroupNotFoundException, AttachmentInvalidException, IOException; -}