Add files via upload

This commit is contained in:
DXL
2020-08-27 11:22:49 +08:00
committed by GitHub
parent 7eeb1f6179
commit 51d272e989
13 changed files with 162 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
package com.proxgrind.chameleon.callback;
import com.proxgrind.chameleon.javabean.M1KeyBean;
public interface KeysAuthCallback {
// 标签异常
void onTagAbnormal();
// 输入秘钥无效!
void onKeysInvalid();
// 在验证的时候
void onAuth(int sectorRemains);
// 在秘钥轮询的时候
void onKeys(String key);
// 在验证完成时的结果回调!
void onResults(M1KeyBean[] keyBeans);
}