Uses of Interface
org.apache.sshd.common.Factory
-
Packages that use Factory Package Description org.apache.sshd.agent.unix org.apache.sshd.client org.apache.sshd.client.auth org.apache.sshd.client.config.hosts org.apache.sshd.common org.apache.sshd.common.cipher Cipher
implementations.org.apache.sshd.common.compression Compression
implementations.org.apache.sshd.common.config org.apache.sshd.common.config.keys org.apache.sshd.common.digest Digest
implementations.org.apache.sshd.common.forward org.apache.sshd.common.helpers org.apache.sshd.common.io org.apache.sshd.common.io.nio2 org.apache.sshd.common.kex org.apache.sshd.common.mac Mac
implementations.org.apache.sshd.common.random Random
implementations.org.apache.sshd.common.signature Signature
implementations.org.apache.sshd.common.util.security.bouncycastle org.apache.sshd.server org.apache.sshd.server.auth -
-
Uses of Factory in org.apache.sshd.agent.unix
Fields in org.apache.sshd.agent.unix declared as Factory Modifier and Type Field Description private Factory<CloseableExecutorService>
ChannelAgentForwardingFactory. executorServiceFactory
private Factory<CloseableExecutorService>
UnixAgentFactory. executorServiceFactory
Constructors in org.apache.sshd.agent.unix with parameters of type Factory Constructor Description ChannelAgentForwardingFactory(java.lang.String name, Factory<CloseableExecutorService> executorServiceFactory)
UnixAgentFactory(Factory<CloseableExecutorService> factory)
-
Uses of Factory in org.apache.sshd.client
Fields in org.apache.sshd.client declared as Factory Modifier and Type Field Description static Factory<SshClient>
SshClient. DEFAULT_SSH_CLIENT_FACTORY
-
Uses of Factory in org.apache.sshd.client.auth
Classes in org.apache.sshd.client.auth that implement Factory Modifier and Type Class Description class
BuiltinUserAuthFactories
Provides a centralized location for the default built-in authentication factories -
Uses of Factory in org.apache.sshd.client.config.hosts
Classes in org.apache.sshd.client.config.hosts that implement Factory Modifier and Type Class Description class
KnownHostDigest
Available digesters for known hosts entriesFields in org.apache.sshd.client.config.hosts declared as Factory Modifier and Type Field Description private Factory<Mac>
KnownHostDigest. factory
Methods in org.apache.sshd.client.config.hosts with parameters of type Factory Modifier and Type Method Description static byte[]
KnownHostHashValue. calculateHashValue(java.lang.String host, int port, Factory<? extends Mac> factory, byte[] salt)
Constructors in org.apache.sshd.client.config.hosts with parameters of type Factory Constructor Description KnownHostDigest(java.lang.String name, Factory<Mac> factory)
-
Uses of Factory in org.apache.sshd.common
Subinterfaces of Factory in org.apache.sshd.common Modifier and Type Interface Description interface
BuiltinFactory<T>
A named optional factory.interface
NamedFactory<T>
A named factory is a factory identified by a name.Fields in org.apache.sshd.common declared as Factory Modifier and Type Field Description protected Factory<T>
BaseBuilder. factory
protected Factory<Random>
BaseBuilder. randomFactory
Methods in org.apache.sshd.common that return Factory Modifier and Type Method Description Factory<? extends Random>
FactoryManager. getRandomFactory()
Retrieve theRandom
factory to be used.Methods in org.apache.sshd.common with parameters of type Factory Modifier and Type Method Description S
BaseBuilder. factory(Factory<T> factory)
S
BaseBuilder. randomFactory(Factory<Random> randomFactory)
-
Uses of Factory in org.apache.sshd.common.cipher
Subinterfaces of Factory in org.apache.sshd.common.cipher Modifier and Type Interface Description interface
CipherFactory
Classes in org.apache.sshd.common.cipher that implement Factory Modifier and Type Class Description class
BuiltinCiphers
Provides easy access to the currently implemented ciphers -
Uses of Factory in org.apache.sshd.common.compression
Subinterfaces of Factory in org.apache.sshd.common.compression Modifier and Type Interface Description interface
CompressionFactory
Classes in org.apache.sshd.common.compression that implement Factory Modifier and Type Class Description class
BuiltinCompressions
-
Uses of Factory in org.apache.sshd.common.config
Classes in org.apache.sshd.common.config that implement Factory Modifier and Type Class Description class
CompressionConfigValue
Provides a "bridge" between the configuration values and the actualNamedFactory
for theCompression
. -
Uses of Factory in org.apache.sshd.common.config.keys
Methods in org.apache.sshd.common.config.keys with parameters of type Factory Modifier and Type Method Description static java.util.AbstractMap.SimpleImmutableEntry<java.lang.Boolean,java.lang.String>
KeyUtils. checkFingerPrint(java.lang.String expected, Factory<? extends Digest> f, java.security.PublicKey key)
static java.lang.String
KeyUtils. getFingerPrint(Factory<? extends Digest> f, java.lang.String s)
static java.lang.String
KeyUtils. getFingerPrint(Factory<? extends Digest> f, java.lang.String s, java.nio.charset.Charset charset)
static java.lang.String
KeyUtils. getFingerPrint(Factory<? extends Digest> f, java.security.PublicKey key)
static byte[]
KeyUtils. getRawFingerprint(Factory<? extends Digest> f, java.security.PublicKey key)
Constructors in org.apache.sshd.common.config.keys with parameters of type Factory Constructor Description KeyRandomArt(java.security.PublicKey key, Factory<? extends Digest> f)
-
Uses of Factory in org.apache.sshd.common.digest
Subinterfaces of Factory in org.apache.sshd.common.digest Modifier and Type Interface Description interface
DigestFactory
Classes in org.apache.sshd.common.digest that implement Factory Modifier and Type Class Description class
BuiltinDigests
Provides easy access to the currently implemented digestsMethods in org.apache.sshd.common.digest with parameters of type Factory Modifier and Type Method Description static java.lang.String
DigestUtils. getFingerPrint(Factory<? extends Digest> f, byte... buf)
static java.lang.String
DigestUtils. getFingerPrint(Factory<? extends Digest> f, byte[] buf, int offset, int len)
static java.lang.String
DigestUtils. getFingerPrint(Factory<? extends Digest> f, java.lang.String s)
static java.lang.String
DigestUtils. getFingerPrint(Factory<? extends Digest> f, java.lang.String s, java.nio.charset.Charset charset)
-
Uses of Factory in org.apache.sshd.common.forward
Methods in org.apache.sshd.common.forward with parameters of type Factory Modifier and Type Method Description protected IoAcceptor
DefaultForwarder. createIoAcceptor(Factory<? extends IoHandler> handlerFactory)
-
Uses of Factory in org.apache.sshd.common.helpers
Fields in org.apache.sshd.common.helpers declared as Factory Modifier and Type Field Description protected Factory<? extends Random>
AbstractFactoryManager. randomFactory
Methods in org.apache.sshd.common.helpers that return Factory Modifier and Type Method Description Factory<? extends Random>
AbstractFactoryManager. getRandomFactory()
Methods in org.apache.sshd.common.helpers with parameters of type Factory Modifier and Type Method Description void
AbstractFactoryManager. setRandomFactory(Factory<? extends Random> randomFactory)
-
Uses of Factory in org.apache.sshd.common.io
Subinterfaces of Factory in org.apache.sshd.common.io Modifier and Type Interface Description interface
IoHandlerFactory
Classes in org.apache.sshd.common.io that implement Factory Modifier and Type Class Description class
BuiltinIoServiceFactoryFactories
Fields in org.apache.sshd.common.io declared as Factory Modifier and Type Field Description private Factory<CloseableExecutorService>
AbstractIoServiceFactoryFactory. executorServiceFactory
Methods in org.apache.sshd.common.io that return Factory Modifier and Type Method Description Factory<CloseableExecutorService>
AbstractIoServiceFactoryFactory. getExecutorServiceFactory()
Methods in org.apache.sshd.common.io with parameters of type Factory Modifier and Type Method Description void
AbstractIoServiceFactoryFactory. setExecutorServiceFactory(Factory<CloseableExecutorService> factory)
void
IoServiceFactoryFactory. setExecutorServiceFactory(Factory<CloseableExecutorService> factory)
Constructors in org.apache.sshd.common.io with parameters of type Factory Constructor Description AbstractIoServiceFactoryFactory(Factory<CloseableExecutorService> factory)
DefaultIoServiceFactoryFactory(Factory<CloseableExecutorService> factory)
-
Uses of Factory in org.apache.sshd.common.io.nio2
Constructors in org.apache.sshd.common.io.nio2 with parameters of type Factory Constructor Description Nio2ServiceFactoryFactory(Factory<CloseableExecutorService> executors)
-
Uses of Factory in org.apache.sshd.common.kex
Fields in org.apache.sshd.common.kex declared as Factory Modifier and Type Field Description private Factory<? extends Digest>
DHG. factory
Constructors in org.apache.sshd.common.kex with parameters of type Factory Constructor Description DHG(Factory<? extends Digest> digestFactory)
DHG(Factory<? extends Digest> digestFactory, java.math.BigInteger pValue, java.math.BigInteger gValue)
-
Uses of Factory in org.apache.sshd.common.mac
Subinterfaces of Factory in org.apache.sshd.common.mac Modifier and Type Interface Description interface
MacFactory
Classes in org.apache.sshd.common.mac that implement Factory Modifier and Type Class Description class
BuiltinMacs
Provides easy access to the currently implemented macs -
Uses of Factory in org.apache.sshd.common.random
Subinterfaces of Factory in org.apache.sshd.common.random Modifier and Type Interface Description interface
RandomFactory
Classes in org.apache.sshd.common.random that implement Factory Modifier and Type Class Description class
AbstractRandomFactory
class
JceRandomFactory
Named factory for the JCERandom
class
SingletonRandomFactory
A random factory wrapper that uses a single random instance. -
Uses of Factory in org.apache.sshd.common.signature
Subinterfaces of Factory in org.apache.sshd.common.signature Modifier and Type Interface Description interface
SignatureFactory
Classes in org.apache.sshd.common.signature that implement Factory Modifier and Type Class Description class
BuiltinSignatures
Provides easy access to the currently implemented signatures -
Uses of Factory in org.apache.sshd.common.util.security.bouncycastle
Classes in org.apache.sshd.common.util.security.bouncycastle that implement Factory Modifier and Type Class Description class
BouncyCastleRandomFactory
Named factory for the BouncyCastleRandom
-
Uses of Factory in org.apache.sshd.server
Fields in org.apache.sshd.server declared as Factory Modifier and Type Field Description static Factory<SshServer>
SshServer. DEFAULT_SSH_SERVER_FACTORY
-
Uses of Factory in org.apache.sshd.server.auth
Classes in org.apache.sshd.server.auth that implement Factory Modifier and Type Class Description class
BuiltinUserAuthFactories
Provides a centralized location for the default built-in authentication factories
-