From 9d8104e15c21294a21a421a02303c9586f823e96 Mon Sep 17 00:00:00 2001 From: mgeier63 Date: Wed, 26 Aug 2015 11:13:38 +0200 Subject: initial mod --- openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl | 1 + 1 file changed, 1 insertion(+) (limited to 'openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl') diff --git a/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl b/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl index 2451207..8fa619b 100644 --- a/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl +++ b/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl @@ -19,6 +19,7 @@ package org.openintents.openpgp; interface IOpenPgpService { // see OpenPgpApi for documentation + //DEPRECATED, do NOT use this, data returned from the service through "output" may be truncated Intent execute(in Intent data, in ParcelFileDescriptor input, in ParcelFileDescriptor output); } \ No newline at end of file -- cgit v1.2.3 From 820e183ca76d0f7feb5d7584d5eddcd49a4e7d57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Fri, 28 Aug 2015 17:03:15 +0200 Subject: Fix and improve OpenPgpService2 code --- .../src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl') diff --git a/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl b/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl index 8fa619b..3689d17 100644 --- a/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl +++ b/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl @@ -13,13 +13,15 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - + package org.openintents.openpgp; interface IOpenPgpService { - // see OpenPgpApi for documentation - //DEPRECATED, do NOT use this, data returned from the service through "output" may be truncated + /** + * do NOT use this, data returned from the service through "output" may be truncated + * @deprecated + */ Intent execute(in Intent data, in ParcelFileDescriptor input, in ParcelFileDescriptor output); } \ No newline at end of file -- cgit v1.2.3