blob: a9364fe5ccba39a52d3cd7f91e4d010a7980aa82 [file] [log] [blame]
Felipe Leme436ab6a2016-12-15 11:56:15 -08001/*
2 * Copyright (C) 2017 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 */
Svet Ganov0f4928f2017-02-02 20:02:51 -080016
Felipe Leme436ab6a2016-12-15 11:56:15 -080017package android.service.autofill;
18
Felipe Leme4bcb01a2017-11-21 16:47:13 -080019import android.content.IntentSender;
20
Svet Ganov0f4928f2017-02-02 20:02:51 -080021/**
22 * Interface to receive the result of a save request.
23 *
24 * @hide
25 */
26interface ISaveCallback {
Felipe Leme4bcb01a2017-11-21 16:47:13 -080027 void onSuccess(in IntentSender intentSender);
Svet Ganov0f4928f2017-02-02 20:02:51 -080028 void onFailure(CharSequence message);
Felipe Leme436ab6a2016-12-15 11:56:15 -080029}