diff options
author | Chalard Jean <jchalard@google.com> | 2021-02-25 17:23:40 +0900 |
---|---|---|
committer | Chalard Jean <jchalard@google.com> | 2021-03-16 12:13:27 +0000 |
commit | b1cd4d7b9d2e800e0f3299fa6d47690dd2174b80 (patch) | |
tree | 4b41f8564268336f9884ea5c92681f6e7fc316a2 /core/java/android | |
parent | 0bd0dc2c83d2b0a8f6b124514e1e4f50fdd6d1e2 (diff) |
Public API for per-profile network preference.
This patch defines the API, but does not make it public
yet as there is no implementation yet.
Test: none so far
Change-Id: I854a952dfe35cc80847eb62f522b1667b8e9b8a0
Diffstat (limited to 'core/java/android')
-rw-r--r-- | core/java/android/net/IOnCompleteListener.aidl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/core/java/android/net/IOnCompleteListener.aidl b/core/java/android/net/IOnCompleteListener.aidl new file mode 100644 index 000000000000..4bb89f6c89e4 --- /dev/null +++ b/core/java/android/net/IOnCompleteListener.aidl @@ -0,0 +1,23 @@ +/** + * + * Copyright (C) 2021 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 android.net; + +/** @hide */ +oneway interface IOnCompleteListener { + void onComplete(); +} |