Commit 8e4901a6 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Removed unused instance variable.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8211 b35dd754-fafc-0310-a699-88a17e54d16e
parent cec0fc15
...@@ -11,16 +11,15 @@ ...@@ -11,16 +11,15 @@
package org.jivesoftware.openfire.session; package org.jivesoftware.openfire.session;
import org.jivesoftware.util.LocaleUtils;
import org.jivesoftware.util.Log;
import org.jivesoftware.openfire.Connection; import org.jivesoftware.openfire.Connection;
import org.jivesoftware.openfire.RoutableChannelHandler; import org.jivesoftware.openfire.RoutableChannelHandler;
import org.jivesoftware.openfire.SessionManager; import org.jivesoftware.openfire.SessionManager;
import org.jivesoftware.openfire.StreamID; import org.jivesoftware.openfire.StreamID;
import org.jivesoftware.openfire.auth.AuthToken;
import org.jivesoftware.openfire.auth.UnauthorizedException; import org.jivesoftware.openfire.auth.UnauthorizedException;
import org.jivesoftware.openfire.interceptor.InterceptorManager; import org.jivesoftware.openfire.interceptor.InterceptorManager;
import org.jivesoftware.openfire.interceptor.PacketRejectedException; import org.jivesoftware.openfire.interceptor.PacketRejectedException;
import org.jivesoftware.util.LocaleUtils;
import org.jivesoftware.util.Log;
import org.xmpp.packet.JID; import org.xmpp.packet.JID;
import org.xmpp.packet.Packet; import org.xmpp.packet.Packet;
...@@ -76,11 +75,6 @@ public abstract class Session implements RoutableChannelHandler { ...@@ -76,11 +75,6 @@ public abstract class Session implements RoutableChannelHandler {
*/ */
protected Connection conn; protected Connection conn;
/**
* The authentication token for this session.
*/
protected AuthToken authToken;
protected SessionManager sessionManager; protected SessionManager sessionManager;
private String serverName; private String serverName;
...@@ -100,7 +94,9 @@ public abstract class Session implements RoutableChannelHandler { ...@@ -100,7 +94,9 @@ public abstract class Session implements RoutableChannelHandler {
/** /**
* Creates a session with an underlying connection and permission protection. * Creates a session with an underlying connection and permission protection.
* *
* @param connection The connection we are proxying * @param serverName domain of the XMPP server where the new session belongs.
* @param connection The connection we are proxying.
* @param streamID unique identifier for this session.
*/ */
public Session(String serverName, Connection connection, StreamID streamID) { public Session(String serverName, Connection connection, StreamID streamID) {
conn = connection; conn = connection;
...@@ -129,6 +125,8 @@ public abstract class Session implements RoutableChannelHandler { ...@@ -129,6 +125,8 @@ public abstract class Session implements RoutableChannelHandler {
* server packet router to determine if a packet should be sent to the handler. * server packet router to determine if a packet should be sent to the handler.
* Handlers that are working on behalf of the server should use the generic server * Handlers that are working on behalf of the server should use the generic server
* hostname address (e.g. server.com). * hostname address (e.g. server.com).
*
* @param address the new address of this session.
*/ */
public void setAddress(JID address){ public void setAddress(JID address){
this.address = address; this.address = address;
......
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