📄 i_clientlistener.java
字号:
/*------------------------------------------------------------------------------Name: I_ClientListener.javaProject: xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE fileComment: sessionRemoved and sessionAdded eventsVersion: $Id: I_ClientListener.java 12937 2004-11-24 20:15:11Z ruff $------------------------------------------------------------------------------*/package org.xmlBlaster.authentication;import org.xmlBlaster.util.XmlBlasterException;/** * Listens on sessionRemoved and sessionAdded events. * <p> * The events are fired by the Authenticate object. * * @version $Revision: 1.5 $ * @author $Author: ruff $ */public interface I_ClientListener extends java.util.EventListener { /** * Invoked on successful client login */ public void sessionAdded(ClientEvent e) throws XmlBlasterException; /** * Invoked on first successful client login, when SubjectInfo is created */ public void subjectAdded(ClientEvent e) throws XmlBlasterException; /** * Invoked before a client does a logout */ public void sessionPreRemoved(ClientEvent e) throws XmlBlasterException; /** * Invoked when client does a logout */ public void sessionRemoved(ClientEvent e) throws XmlBlasterException; /** * Invoked when client does its last logout */ public void subjectRemoved(ClientEvent e) throws XmlBlasterException; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -