From 9d8104e15c21294a21a421a02303c9586f823e96 Mon Sep 17 00:00:00 2001 From: mgeier63 Date: Wed, 26 Aug 2015 11:13:38 +0200 Subject: initial mod --- .../org/openintents/openpgp/IOpenPgpService2.aidl | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl (limited to 'openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl') diff --git a/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl b/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl new file mode 100644 index 0000000..daca0ee --- /dev/null +++ b/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2014-2015 Dominik Schürmann + * + * 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 org.openintents.openpgp; + +interface IOpenPgpService2 { + + ParcelFileDescriptor createOutputPipe(in int pipeId); + Intent execute(in Intent data, in ParcelFileDescriptor input, int pipeId); +} \ No newline at end of file -- cgit v1.2.3 From a2db5abdd9c26768ecb1278dfae371d6b90a36de Mon Sep 17 00:00:00 2001 From: mgeier63 Date: Thu, 27 Aug 2015 06:56:57 +0200 Subject: added missing linebreak --- openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl') 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 daca0ee..39c24e5 100644 --- a/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl +++ b/openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl @@ -20,4 +20,4 @@ interface IOpenPgpService2 { ParcelFileDescriptor createOutputPipe(in int pipeId); Intent execute(in Intent data, in ParcelFileDescriptor input, int pipeId); -} \ 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/IOpenPgpService2.aidl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'openpgp-api/src/main/aidl/org/openintents/openpgp/IOpenPgpService2.aidl') 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 + * Copyright (C) 2015 Dominik Schürmann * * 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); } -- cgit v1.2.3