1fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller/*
2fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * Copyright (C) 2017 The Android Open Source Project
3fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller *
4fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * Licensed under the Apache License, Version 2.0 (the "License");
5fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * you may not use this file except in compliance with the License.
6fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * You may obtain a copy of the License at
7fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller *
8fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller *      http://www.apache.org/licenses/LICENSE-2.0
9fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller *
10fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * Unless required by applicable law or agreed to in writing, software
11fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * distributed under the License is distributed on an "AS IS" BASIS,
12fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * See the License for the specific language governing permissions and
14fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * limitations under the License.
15fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller */
16fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller
17fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fullerpackage android.app.timezone;
18fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller
19fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller/**
20fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * Callback interface for a timezone updater to receive information about the success or failure of
21fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * an installation/uninstallation attempt.
22fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller *
23fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller * {@hide}
24fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller */
25fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fulleroneway interface ICallback {
26fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller    void onFinished(int error);
27fe6ec56cce981731be7d0bc0e61a0411d0a0d2cfNeil Fuller}