bsauthlistener.java
来自「一款即时通讯软件」· Java 代码 · 共 30 行
JAVA
30 行
package edu.ou.kmi.buddyspace.core;
/*
* BSAuthListener.java
*
* Project: BuddySpace
* (C) Copyright Knowledge Media Institute 2002
*
*
* Created on 16 July 2002, 17:35
*/
import java.util.EventListener;
/**
* <code>BSAuthListener</code> is interface you can implement to get
* authentication events notifications.
*
* @author Jiri Komzak, Knowledge Media Institute, Open University, United Kingdom
*/
public interface BSAuthListener extends EventListener {
/** Called when authentication error occured */
public void authError(BSAuthEvent ae);
/** Called when authentication succeeded */
public void authorized(BSAuthEvent ae);
/** Called when authentication moved, but still in progress */
public void authorizing(BSAuthEvent ae);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?