Uses of Class
org.apache.sshd.common.session.AbstractSession

Packages that use AbstractSession
org.apache.sshd Defines the two main classes for the client and server side of SSH protocol support. 
org.apache.sshd.client   
org.apache.sshd.client.kex   
org.apache.sshd.client.session   
org.apache.sshd.common   
org.apache.sshd.common.session   
org.apache.sshd.server.kex   
org.apache.sshd.server.session   
 

Uses of AbstractSession in org.apache.sshd
 

Methods in org.apache.sshd that return types with arguments of type AbstractSession
 java.util.List<AbstractSession> SshServer.getActiveSessions()
          Obtain the list of active sessions.
 

Uses of AbstractSession in org.apache.sshd.client
 

Methods in org.apache.sshd.client that return AbstractSession
protected  AbstractSession SessionFactory.doCreateSession(org.apache.mina.core.session.IoSession ioSession)
           
 

Uses of AbstractSession in org.apache.sshd.client.kex
 

Methods in org.apache.sshd.client.kex with parameters of type AbstractSession
 void AbstractDHGClient.init(AbstractSession s, byte[] V_S, byte[] V_C, byte[] I_S, byte[] I_C)
           
 

Uses of AbstractSession in org.apache.sshd.client.session
 

Subclasses of AbstractSession in org.apache.sshd.client.session
 class ClientSessionImpl
          TODO Add javadoc
 

Uses of AbstractSession in org.apache.sshd.common
 

Methods in org.apache.sshd.common that return AbstractSession
protected abstract  AbstractSession AbstractSessionIoHandler.createSession(org.apache.mina.core.session.IoSession ioSession)
           
 

Methods in org.apache.sshd.common with parameters of type AbstractSession
 void KeyExchange.init(AbstractSession session, byte[] V_S, byte[] V_C, byte[] I_S, byte[] I_C)
          Initialize the key exchange algorithm.
 

Uses of AbstractSession in org.apache.sshd.common.session
 

Methods in org.apache.sshd.common.session that return AbstractSession
protected  AbstractSession AbstractSessionFactory.createSession(org.apache.mina.core.session.IoSession ioSession)
           
protected abstract  AbstractSession AbstractSessionFactory.doCreateSession(org.apache.mina.core.session.IoSession ioSession)
           
static AbstractSession AbstractSession.getSession(org.apache.mina.core.session.IoSession ioSession)
          Retrieve the session from the MINA session.
static AbstractSession AbstractSession.getSession(org.apache.mina.core.session.IoSession ioSession, boolean allowNull)
          Retrieve the session from the MINA session.
 

Methods in org.apache.sshd.common.session with parameters of type AbstractSession
static void AbstractSession.attachSession(org.apache.mina.core.session.IoSession ioSession, AbstractSession session)
          Attach a session to the MINA session
 

Uses of AbstractSession in org.apache.sshd.server.kex
 

Methods in org.apache.sshd.server.kex with parameters of type AbstractSession
 void AbstractDHGServer.init(AbstractSession s, byte[] V_S, byte[] V_C, byte[] I_S, byte[] I_C)
           
 

Uses of AbstractSession in org.apache.sshd.server.session
 

Subclasses of AbstractSession in org.apache.sshd.server.session
 class ServerSession
          TODO: handle key re-exchange key re-exchange should be performed after each gigabyte of transferred data or one hour time connection (see RFC4253, section 9) TODO: better use of SSH_MSG_DISCONNECT and disconnect error codes TODO Add javadoc
 

Methods in org.apache.sshd.server.session that return AbstractSession
protected  AbstractSession SessionFactory.doCreateSession(org.apache.mina.core.session.IoSession ioSession)
           
 



Copyright © 2008-2012 The Apache Software Foundation. All Rights Reserved.