diff options
author | Chalard Jean <jchalard@google.com> | 2021-03-17 05:48:18 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-03-17 05:48:18 +0000 |
commit | 3ee9b7f2515daa6ad234dc8303b89808c0d5aed6 (patch) | |
tree | 7c8631e9cc996474aaa652c9e2e92c0c8143c215 /core/java | |
parent | 665844b1e29d0401d7c1b00a4ccd87b27a0bf09b (diff) | |
parent | d1343a21e9476eb422ab57f879685eb4702c2b23 (diff) |
Merge changes I335e82e2,I84ba363d,I8f18083b,I854a952d,I00e23441
* changes:
Remove per-user preference when the user is removed
Expose the enterprise per-profile networking API.
Implement setNetworkPreferenceForUser.
Public API for per-profile network preference.
Add tests for setNetworkPreferenceForUser
Diffstat (limited to 'core/java')
-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(); +} |