Commit 5b06d53a authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Improved javadocs.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@7914 b35dd754-fafc-0310-a699-88a17e54d16e
parent 30e30960
......@@ -19,30 +19,32 @@ import org.jivesoftware.openfire.session.Session;
public interface SessionEventListener {
/**
* A session was created.
* Notification event indicating that a user has authenticated with the server. The
* authenticated user is not an anonymous user.
*
* @param session the session.
* @param session the authenticated session of a non anonymous user.
*/
public void sessionCreated(Session session);
/**
* A session was destroyed
* An authenticated session of a non anonymous user was destroyed.
*
* @param session the session.
* @param session the authenticated session of a non anonymous user.
*/
public void sessionDestroyed(Session session);
/**
* An anonymous session was created.
* Notification event indicating that an anonymous user has authenticated with the server.
*
* @param session the session.
* @param session the authenticated session of an anonymous user.
*/
public void anonymousSessionCreated(Session session);
/**
* An anonymous session was created.
*
* @param session the session.
/**
* An authenticated session of an anonymous user was destroyed.
*
* @param session the authenticated session of an anonymous user.
*/
public void anonymousSessionDestroyed(Session session);
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment