summaryrefslogtreecommitdiffstats
path: root/src/com/android/nfc/DeviceHost.java
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2012-12-13 16:24:26 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2012-12-13 16:24:26 -0800
commit525c260303268a83da4c3413b953d13c9084e834 (patch)
tree110a4a6bc2621f34fa2cf7f4c8ba2625598873aa /src/com/android/nfc/DeviceHost.java
parent7a1d2adf875d414625853b3a5360663e420a3769 (diff)
downloadpackages_apps_nfc-525c260303268a83da4c3413b953d13c9084e834.zip
packages_apps_nfc-525c260303268a83da4c3413b953d13c9084e834.tar.gz
packages_apps_nfc-525c260303268a83da4c3413b953d13c9084e834.tar.bz2
Snapshot 1a6bcf3cca90fedfbad33c1cdd6d05af5774fc01
Change-Id: I3ccb25bf7cde2c22f52260cae0e9957517e6bb5f
Diffstat (limited to 'src/com/android/nfc/DeviceHost.java')
-rw-r--r--src/com/android/nfc/DeviceHost.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/com/android/nfc/DeviceHost.java b/src/com/android/nfc/DeviceHost.java
index 047e3d5..e514bb6 100644
--- a/src/com/android/nfc/DeviceHost.java
+++ b/src/com/android/nfc/DeviceHost.java
@@ -49,6 +49,16 @@ public interface DeviceHost {
public void onRemoteFieldDeactivated();
+ /**
+ * Notifies that the SE has been activated in listen mode
+ */
+ public void onSeListenActivated();
+
+ /**
+ * Notifies that the SE has been deactivated
+ */
+ public void onSeListenDeactivated();
+
public void onSeApduReceived(byte[] apdu);
public void onSeEmvCardRemoval();
@@ -175,6 +185,8 @@ public interface DeviceHost {
public boolean deinitialize();
+ public String getName();
+
public void enableDiscovery();
public void disableDiscovery();
@@ -216,5 +228,13 @@ public interface DeviceHost {
boolean getExtendedLengthApdusSupported();
+ boolean enablePN544Quirks();
+
+ byte[][] getWipeApdus();
+
+ int getDefaultLlcpMiu();
+
+ int getDefaultLlcpRwSize();
+
String dump();
}