Uses of Interface
org.apache.sshd.common.Factory

Packages that use Factory
org.apache.sshd Defines the two main classes for the client and server side of SSH protocol support. 
org.apache.sshd.agent   
org.apache.sshd.client.kex   
org.apache.sshd.common   
org.apache.sshd.common.cipher Cipher implementations. 
org.apache.sshd.common.compression Compression implementations. 
org.apache.sshd.common.digest Digest implementations. 
org.apache.sshd.common.mac Mac implementations. 
org.apache.sshd.common.random Random implementations. 
org.apache.sshd.common.signature Signature implementations. 
org.apache.sshd.server   
org.apache.sshd.server.auth   
org.apache.sshd.server.auth.gss   
org.apache.sshd.server.channel   
org.apache.sshd.server.sftp   
org.apache.sshd.server.shell   
 

Uses of Factory in org.apache.sshd
 

Fields in org.apache.sshd declared as Factory
protected  Factory<Command> SshServer.shellFactory
           
 

Methods in org.apache.sshd that return Factory
 Factory<Command> SshServer.getShellFactory()
           
 

Methods in org.apache.sshd with parameters of type Factory
 void SshServer.setShellFactory(Factory<Command> shellFactory)
           
 

Uses of Factory in org.apache.sshd.agent
 

Classes in org.apache.sshd.agent that implement Factory
static class ChannelAgentForwarding.Factory
           
 

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

Classes in org.apache.sshd.client.kex that implement Factory
static class DHG1.Factory
          Named factory for DHG1 key exchange
static class DHG14.Factory
          Named factory for DHG14 key exchange
 

Uses of Factory in org.apache.sshd.common
 

Subinterfaces of Factory in org.apache.sshd.common
 interface NamedFactory<T>
          A named factory is a factory identified by a name.
 

Fields in org.apache.sshd.common declared as Factory
protected  Factory<Random> AbstractFactoryManager.randomFactory
           
 

Methods in org.apache.sshd.common that return Factory
 Factory<Random> AbstractFactoryManager.getRandomFactory()
           
 Factory<Random> FactoryManager.getRandomFactory()
          Retrieve the Random factory to be used.
 

Methods in org.apache.sshd.common with parameters of type Factory
 void AbstractFactoryManager.setRandomFactory(Factory<Random> randomFactory)
           
 

Uses of Factory in org.apache.sshd.common.cipher
 

Classes in org.apache.sshd.common.cipher that implement Factory
static class AES128CBC.Factory
          Named factory for AES128CBC Cipher
static class AES192CBC.Factory
          Named factory for AES192CBC Cipher
static class AES256CBC.Factory
          Named factory for AES256CBC Cipher
static class BlowfishCBC.Factory
          Named factory for BlowfishCBC Cipher
static class CipherNone.Factory
          Named factory for the no-op Cipher
static class TripleDESCBC.Factory
          Named factory for TripleDESCBC Cipher
 

Uses of Factory in org.apache.sshd.common.compression
 

Classes in org.apache.sshd.common.compression that implement Factory
static class CompressionDelayedZlib.Factory
          Named factory for the ZLib Delayed Compression.
static class CompressionNone.Factory
          Named factory for the no-op Compression.
static class CompressionZlib.Factory
          Named factory for the ZLib Compression.
 

Uses of Factory in org.apache.sshd.common.digest
 

Classes in org.apache.sshd.common.digest that implement Factory
static class MD5.Factory
          Named factory for MD5 digest
static class SHA1.Factory
          Named factory for SHA1 digest
 

Uses of Factory in org.apache.sshd.common.mac
 

Classes in org.apache.sshd.common.mac that implement Factory
static class HMACMD5.Factory
          Named factory for the HMACMD5 Mac
static class HMACMD596.Factory
          Named factory for the HMAC-MD5-96 Mac
static class HMACSHA1.Factory
          Named factory for the HMAC-SHA1 Mac
static class HMACSHA196.Factory
          Named factory for the HMAC-SHA1-96 Mac
 

Uses of Factory in org.apache.sshd.common.random
 

Classes in org.apache.sshd.common.random that implement Factory
static class BouncyCastleRandom.Factory
          Named factory for the BouncyCastle Random
static class JceRandom.Factory
          Named factory for the BouncyCastle Random
 class SingletonRandomFactory
          A random factory wrapper that uses a single random instance.
 

Uses of Factory in org.apache.sshd.common.signature
 

Classes in org.apache.sshd.common.signature that implement Factory
static class SignatureDSA.Factory
          A named factory for DSA signature
static class SignatureRSA.Factory
          A named factory for RSA Signature
 

Uses of Factory in org.apache.sshd.server
 

Methods in org.apache.sshd.server that return Factory
 Factory<Command> ServerFactoryManager.getShellFactory()
          Retrieve the ShellFactory object to be used to create shells.
 

Uses of Factory in org.apache.sshd.server.auth
 

Classes in org.apache.sshd.server.auth that implement Factory
static class UserAuthNone.Factory
           
static class UserAuthPassword.Factory
           
static class UserAuthPublicKey.Factory
           
 

Uses of Factory in org.apache.sshd.server.auth.gss
 

Classes in org.apache.sshd.server.auth.gss that implement Factory
static class UserAuthGSS.Factory
          Factory class.
 

Uses of Factory in org.apache.sshd.server.channel
 

Classes in org.apache.sshd.server.channel that implement Factory
static class ChannelDirectTcpip.Factory
           
static class ChannelSession.Factory
           
 

Uses of Factory in org.apache.sshd.server.sftp
 

Classes in org.apache.sshd.server.sftp that implement Factory
static class SftpSubsystem.Factory
           
 

Uses of Factory in org.apache.sshd.server.shell
 

Classes in org.apache.sshd.server.shell that implement Factory
 class ProcessShellFactory
          A Factory of Command that will create a new process and bridge the streams.
 



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