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
+27
View File
@@ -0,0 +1,27 @@
package com.proxgrind.chameleon.callback;
public interface KeyFileCallbak {
interface KeyFileReadCallbak {
//密钥读取成功时的回调
void onReadSuccess(String msg);
//密钥读取失败时的回调
void onReadFail();
}
interface KeyFileWriteCallbak {
//密钥写入成功时的回调
void onWriteSuccess(String msg);
//密钥写入失败时的回调
void onWriteFail();
}
interface KeyFileCreateCallback {
void onCreateSuccess();
void onCreateFail();
}
}