summaryrefslogtreecommitdiff
path: root/src/java/com/android/internal/telephony/mms/IMms.aidl
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/com/android/internal/telephony/mms/IMms.aidl')
-rw-r--r--src/java/com/android/internal/telephony/mms/IMms.aidl44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/java/com/android/internal/telephony/mms/IMms.aidl b/src/java/com/android/internal/telephony/mms/IMms.aidl
deleted file mode 100644
index 3f5ed9d..0000000
--- a/src/java/com/android/internal/telephony/mms/IMms.aidl
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (C) 2014 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.android.internal.telephony.mms;
-
-import android.app.PendingIntent;
-
-/**
- * Service interface to handle MMS API requests
- */
-interface IMms {
- /**
- * Send an MMS message
- *
- * @param pdu the MMS message encoded in standard MMS PDU format
- * @param locationUrl the optional location url for where this message should be sent to
- * @param sentIntent if not NULL this <code>PendingIntent</code> is
- * broadcast when the message is successfully sent, or failed
- */
- void sendMessage(in byte[] pdu, String locationUrl, in PendingIntent sentIntent);
-
- /**
- * Download an MMS message using known location and transaction id
- *
- * @param locationUrl the location URL of the MMS message to be downloaded, usually obtained
- * from the MMS WAP push notification
- * @param downloadedIntent if not NULL this <code>PendingIntent</code> is
- * broadcast when the message is downloaded, or the download is failed
- */
- void downloadMessage(String locationUrl, in PendingIntent downloadedIntent);
-}