blob: df6438319ab711a73feaed7ca780423686e8d5e4 [file] [log] [blame]
Neil Fuller3352cfc2019-11-07 15:35:05 +00001/*
2 * Copyright (C) 2019 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.app.timezonedetector;
18
Neil Fuller2c6d5102019-11-29 09:02:39 +000019import android.app.timezonedetector.ManualTimeZoneSuggestion;
Neil Fuller3352cfc2019-11-07 15:35:05 +000020import android.app.timezonedetector.PhoneTimeZoneSuggestion;
21
22/**
23 * System private API to communicate with time zone detector service.
24 *
25 * <p>Used to provide information to the Time Zone Detector Service from other parts of the Android
26 * system that have access to time zone-related signals, e.g. telephony.
27 *
28 * <p>Use the {@link android.app.timezonedetector.TimeZoneDetector} class rather than going through
29 * this Binder interface directly. See {@link android.app.timezonedetector.TimeZoneDetectorService}
30 * for more complete documentation.
31 *
32 *
33 * {@hide}
34 */
35interface ITimeZoneDetectorService {
Neil Fuller2c6d5102019-11-29 09:02:39 +000036 void suggestManualTimeZone(in ManualTimeZoneSuggestion timeZoneSuggestion);
Neil Fuller3352cfc2019-11-07 15:35:05 +000037 void suggestPhoneTimeZone(in PhoneTimeZoneSuggestion timeZoneSuggestion);
38}