Uses of Class
net.schmizz.sshj.common.Message

Packages that use Message
net.schmizz.sshj   
net.schmizz.sshj.common   
net.schmizz.sshj.connection   
net.schmizz.sshj.connection.channel   
net.schmizz.sshj.connection.channel.direct   
net.schmizz.sshj.transport   
net.schmizz.sshj.transport.kex   
net.schmizz.sshj.userauth   
net.schmizz.sshj.userauth.method   
 

Uses of Message in net.schmizz.sshj
 

Methods in net.schmizz.sshj with parameters of type Message
 void AbstractService.handle(Message msg, SSHPacket buf)
           
 

Uses of Message in net.schmizz.sshj.common
 

Methods in net.schmizz.sshj.common that return Message
static Message Message.fromByte(byte b)
           
 Message SSHPacket.readMessageID()
          Reads an SSH byte and returns it as Message
static Message Message.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Message[] Message.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.schmizz.sshj.common with parameters of type Message
 void SSHPacketHandler.handle(Message msg, SSHPacket buf)
          Delegate handling of some SSH packet to this object.
 SSHPacket SSHPacket.putMessageID(Message msg)
          Writes a byte indicating the SSH message identifier
 

Constructors in net.schmizz.sshj.common with parameters of type Message
SSHPacket(Message msg)
          Constructs new buffer for the specified SSH packet and reserves the needed space (5 bytes) for the packet header.
 

Uses of Message in net.schmizz.sshj.connection
 

Methods in net.schmizz.sshj.connection with parameters of type Message
 void ConnectionImpl.handle(Message msg, SSHPacket buf)
           
 

Uses of Message in net.schmizz.sshj.connection.channel
 

Methods in net.schmizz.sshj.connection.channel with parameters of type Message
protected  void AbstractChannel.gotUnknown(Message msg, SSHPacket buf)
           
 void AbstractChannel.handle(Message msg, SSHPacket buf)
           
protected  SSHPacket AbstractChannel.newBuffer(Message cmd)
           
 

Uses of Message in net.schmizz.sshj.connection.channel.direct
 

Methods in net.schmizz.sshj.connection.channel.direct with parameters of type Message
protected  void AbstractDirectChannel.gotUnknown(Message cmd, SSHPacket buf)
           
 

Uses of Message in net.schmizz.sshj.transport
 

Methods in net.schmizz.sshj.transport with parameters of type Message
 void TransportImpl.handle(Message msg, SSHPacket buf)
          This is where all incoming packets are handled.
 

Uses of Message in net.schmizz.sshj.transport.kex
 

Methods in net.schmizz.sshj.transport.kex with parameters of type Message
 boolean KeyExchange.next(Message msg, SSHPacket buffer)
          Process the next packet
 boolean AbstractDHG.next(Message msg, SSHPacket packet)
           
 

Uses of Message in net.schmizz.sshj.userauth
 

Methods in net.schmizz.sshj.userauth with parameters of type Message
 void UserAuthImpl.handle(Message msg, SSHPacket buf)
           
 

Uses of Message in net.schmizz.sshj.userauth.method
 

Methods in net.schmizz.sshj.userauth.method with parameters of type Message
 void AuthPublickey.handle(Message cmd, SSHPacket buf)
          Internal use.
 void AuthPassword.handle(Message cmd, SSHPacket buf)
           
 void AuthKeyboardInteractive.handle(Message cmd, SSHPacket buf)
           
 void AbstractAuthMethod.handle(Message msg, SSHPacket buf)
           
 



Copyright © 2009-2012. All Rights Reserved.