aboutsummaryrefslogtreecommitdiffstats
path: root/openpgp-api/src/main/aidl
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp-api/src/main/aidl')
-rw-r--r--openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService.aidl8
-rw-r--r--openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl9
2 files changed, 13 insertions, 4 deletions
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
diff --git a/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl b/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl
index 39c24e5..8aa4dd2 100644
--- a/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl
+++ b/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2014-2015 Dominik Schürmann <dominik@dominikschuermann.de>
+ * Copyright (C) 2015 Dominik Schürmann <dominik@dominikschuermann.de>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -18,6 +18,13 @@ package org.openintents.openpgp;
interface IOpenPgpService2 {
+ /**
+ * see org.openintents.openpgp.util.OpenPgpApi for documentation
+ */
ParcelFileDescriptor createOutputPipe(in int pipeId);
+
+ /**
+ * see org.openintents.openpgp.util.OpenPgpApi for documentation
+ */
Intent execute(in Intent data, in ParcelFileDescriptor input, int pipeId);
}