Commit e897368f authored by Matt Tucker's avatar Matt Tucker Committed by matt

Javadoc.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6249 b35dd754-fafc-0310-a699-88a17e54d16e
parent 954f816e
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
* This software is published under the terms of the GNU Public License (GPL), * This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution. * a copy of which is included in this distribution.
*/ */
package org.jivesoftware.wildfire.http; package org.jivesoftware.wildfire.http;
import org.jivesoftware.util.JiveGlobals; import org.jivesoftware.util.JiveGlobals;
......
/** /**
* $RCSfile: $ * $RCSfile$
* $Revision: $ * $Revision: $
* $Date: $ * $Date: $
* *
* Copyright (C) 2006 Jive Software. All rights reserved. * Copyright (C) 2006 Jive Software. All rights reserved.
* This software is the proprietary information of Jive Software. Use is subject to license terms. *
* This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution.
*/ */
package org.jivesoftware.wildfire.http;
package org.jivesoftware.wildfire.http;
/** /**
* Listens for HTTP binding session events.
* *
* @author Alexander Wenckus
*/ */
public interface SessionListener { public interface SessionListener {
/**
* A connection was opened.
*
* @param session the session.
* @param connection the connection.
*/
public void connectionOpened(HttpSession session, HttpConnection connection); public void connectionOpened(HttpSession session, HttpConnection connection);
/**
* A conneciton was closed.
*
* @param session the session.
* @param connection the connection.
*/
public void connectionClosed(HttpSession session, HttpConnection connection); public void connectionClosed(HttpSession session, HttpConnection connection);
/**
* A session ended.
*
* @param session the session.
*/
public void sessionClosed(HttpSession session); public void sessionClosed(HttpSession 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