Source code: edu/ou/kmi/buddyspace/core/BSAuthListener.java
1 package edu.ou.kmi.buddyspace.core;
2
3 /*
4 * BSAuthListener.java
5 *
6 * Project: BuddySpace
7 * (C) Copyright Knowledge Media Institute 2002
8 *
9 *
10 * Created on 16 July 2002, 17:35
11 */
12
13 import java.util.EventListener;
14
15 /**
16 * <code>BSAuthListener</code> is interface you can implement to get
17 * authentication events notifications.
18 *
19 * @author Jiri Komzak, Knowledge Media Institute, Open University, United Kingdom
20 */
21 public interface BSAuthListener extends EventListener {
22 /** Called when authentication error occured */
23 public void authError(BSAuthEvent ae);
24
25 /** Called when authentication succeeded */
26 public void authorized(BSAuthEvent ae);
27
28 /** Called when authentication moved, but still in progress */
29 public void authorizing(BSAuthEvent ae);
30 }