blob: fe21905c7002923bd0e8bf12a84ee1f9551ecd06 [file] [log] [blame]
Paul Jensen49e3edf2015-05-22 10:50:39 -04001/**
2 * Copyright (c) 2015, The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.net;
18
19/**
20 * Interface to inform NetworkMonitor of decisions of app handling captive portal.
21 * @hide
22 */
Remi NGUYEN VAN1e6b186022019-01-20 14:00:34 +090023oneway interface ICaptivePortal {
Chiachang Wang207b6cf2020-01-09 13:50:55 +080024 void appRequest(int request);
Remi NGUYEN VAN1e6b186022019-01-20 14:00:34 +090025 void appResponse(int response);
Remi NGUYEN VANde602212019-01-30 15:22:01 +090026 void logEvent(int eventId, String packageName);
Paul Jensen49e3edf2015-05-22 10:50:39 -040027}