blob: c027d54647bde9f595ba7425c3432d2d17fddc55 [file] [log] [blame]
Jason parks01425362011-05-24 02:57:37 -07001/*
2 * Copyright (C) 2011 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.nfc;
18
Martijn Coenen1fa2aff2013-02-27 09:21:22 -080019import android.nfc.BeamShareData;
Martijn Coenen5b1e0322013-09-02 20:38:47 -070020import android.nfc.Tag;
Jason parks01425362011-05-24 02:57:37 -070021
22/**
23 * @hide
24 */
Martijn Coenen5b1e0322013-09-02 20:38:47 -070025interface IAppCallback
Jason parks01425362011-05-24 02:57:37 -070026{
Martijn Coenenfd70bb12015-04-14 11:38:21 +020027 BeamShareData createBeamShareData(byte peerLlcpVersion);
28 void onNdefPushComplete(byte peerLlcpVersion);
Martijn Coenen5b1e0322013-09-02 20:38:47 -070029 void onTagDiscovered(in Tag tag);
Jason parks01425362011-05-24 02:57:37 -070030}