⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bsauthlistener.java

📁 一款即时通讯软件
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -