From 4d37cd2e98ab02bc7531bc6da7f8210c507fff3a Mon Sep 17 00:00:00 2001 From: DXL <64101226@qq.com> Date: Thu, 27 Aug 2020 11:25:18 +0800 Subject: [PATCH] Delete KeyFileCallbak.java --- KeyFileCallbak.java | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 KeyFileCallbak.java diff --git a/KeyFileCallbak.java b/KeyFileCallbak.java deleted file mode 100644 index 01c52a9..0000000 --- a/KeyFileCallbak.java +++ /dev/null @@ -1,27 +0,0 @@ -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(); - } - -}