1782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov/*
2782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov * Copyright (C) 2017 The Android Open Source Project
329a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme *
429a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme * Licensed under the Apache License, Version 2.0 (the "License");
529a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme * you may not use this file except in compliance with the License.
629a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme * You may obtain a copy of the License at
729a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme *
8782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov *      http://www.apache.org/licenses/LICENSE-2.0
929a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme *
1029a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme * Unless required by applicable law or agreed to in writing, software
1129a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme * distributed under the License is distributed on an "AS IS" BASIS,
1229a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1329a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme * See the License for the specific language governing permissions and
1429a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme * limitations under the License.
1529a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme */
1629a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme
176d553874bed06280766ae24ea605f9bbde3f5a4aFelipe Lemepackage android.view.autofill;
1829a5b0d0f1cc7fd6cbfe97c816b8a687d9e438ccFelipe Leme
19782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganovimport android.view.autofill.Dataset;
20782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganovimport android.service.autofill.FillResponse;
21782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov
22782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov/**
23782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov * Callback for delivering authentication result.
24782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov *
25782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov * {@hide}
26782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov */
27782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganovinterface IAutoFillAuthCallback {
28782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov    void onSuccessForDataset(in Dataset dataset);
29782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov    void onSuccessForFillResponse(in FillResponse response);
30782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov    void onFailure(CharSequence message);
31782043caf81055aa1c331e9cc15b24a10e1bf17aSvet Ganov}
32