OSDN Git Service

NFC Unlock api changes
[android-x86/frameworks-base.git] / core / java / android / nfc / INfcAdapter.aidl
1 /*
2  * Copyright (C) 2010 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
17 package android.nfc;
18
19 import android.app.PendingIntent;
20 import android.content.IntentFilter;
21 import android.nfc.BeamShareData;
22 import android.nfc.NdefMessage;
23 import android.nfc.Tag;
24 import android.nfc.TechListParcel;
25 import android.nfc.IAppCallback;
26 import android.nfc.INfcAdapterExtras;
27 import android.nfc.INfcTag;
28 import android.nfc.INfcCardEmulation;
29 import android.nfc.INfcLockscreenDispatch;
30 import android.nfc.INfcUnlockHandler;
31 import android.os.Bundle;
32
33 /**
34  * @hide
35  */
36 interface INfcAdapter
37 {
38     INfcTag getNfcTagInterface();
39     INfcCardEmulation getNfcCardEmulationInterface();
40     INfcAdapterExtras getNfcAdapterExtrasInterface(in String pkg);
41
42     int getState();
43     boolean disable(boolean saveState);
44     boolean enable();
45     boolean enableNdefPush();
46     boolean disableNdefPush();
47     boolean isNdefPushEnabled();
48
49     void setForegroundDispatch(in PendingIntent intent,
50             in IntentFilter[] filters, in TechListParcel techLists);
51     void setAppCallback(in IAppCallback callback);
52     oneway void invokeBeam();
53     oneway void invokeBeamInternal(in BeamShareData shareData);
54
55     void dispatch(in Tag tag);
56
57     void setReaderMode (IBinder b, IAppCallback callback, int flags, in Bundle extras);
58     void setP2pModes(int initatorModes, int targetModes);
59
60     void registerLockscreenDispatch(INfcLockscreenDispatch lockscreenDispatch, in int[] techList);
61     void addNfcUnlockHandler(INfcUnlockHandler unlockHandler, in int[] techList);
62     void removeNfcUnlockHandler(IBinder b);
63 }