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 Cipherimplementations.org.apache.sshd.common.compression Compressionimplementations.org.apache.sshd.common.config org.apache.sshd.common.config.keys org.apache.sshd.common.digest Digestimplementations.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 Macimplementations.org.apache.sshd.common.random Randomimplementations.org.apache.sshd.common.signature Signatureimplementations.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. executorServiceFactoryprivate Factory<CloseableExecutorService>UnixAgentFactory. executorServiceFactoryConstructors 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 classBuiltinUserAuthFactoriesProvides 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 classKnownHostDigestAvailable digesters for known hosts entriesFields in org.apache.sshd.client.config.hosts declared as Factory Modifier and Type Field Description private Factory<Mac>KnownHostDigest. factoryMethods 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 interfaceBuiltinFactory<T>A named optional factory.interfaceNamedFactory<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. factoryprotected Factory<Random>BaseBuilder. randomFactoryMethods in org.apache.sshd.common that return Factory Modifier and Type Method Description Factory<? extends Random>FactoryManager. getRandomFactory()Retrieve theRandomfactory to be used.Methods in org.apache.sshd.common with parameters of type Factory Modifier and Type Method Description SBaseBuilder. factory(Factory<T> factory)SBaseBuilder. 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 interfaceCipherFactoryClasses in org.apache.sshd.common.cipher that implement Factory Modifier and Type Class Description classBuiltinCiphersProvides 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 interfaceCompressionFactoryClasses in org.apache.sshd.common.compression that implement Factory Modifier and Type Class Description classBuiltinCompressions -
Uses of Factory in org.apache.sshd.common.config
Classes in org.apache.sshd.common.config that implement Factory Modifier and Type Class Description classCompressionConfigValueProvides a "bridge" between the configuration values and the actualNamedFactoryfor 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.StringKeyUtils. getFingerPrint(Factory<? extends Digest> f, java.lang.String s)static java.lang.StringKeyUtils. getFingerPrint(Factory<? extends Digest> f, java.lang.String s, java.nio.charset.Charset charset)static java.lang.StringKeyUtils. 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 interfaceDigestFactoryClasses in org.apache.sshd.common.digest that implement Factory Modifier and Type Class Description classBuiltinDigestsProvides 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.StringDigestUtils. getFingerPrint(Factory<? extends Digest> f, byte... buf)static java.lang.StringDigestUtils. getFingerPrint(Factory<? extends Digest> f, byte[] buf, int offset, int len)static java.lang.StringDigestUtils. getFingerPrint(Factory<? extends Digest> f, java.lang.String s)static java.lang.StringDigestUtils. 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 IoAcceptorDefaultForwarder. 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. randomFactoryMethods 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 voidAbstractFactoryManager. 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 interfaceIoHandlerFactoryClasses in org.apache.sshd.common.io that implement Factory Modifier and Type Class Description classBuiltinIoServiceFactoryFactoriesFields in org.apache.sshd.common.io declared as Factory Modifier and Type Field Description private Factory<CloseableExecutorService>AbstractIoServiceFactoryFactory. executorServiceFactoryMethods 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 voidAbstractIoServiceFactoryFactory. setExecutorServiceFactory(Factory<CloseableExecutorService> factory)voidIoServiceFactoryFactory. 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. factoryConstructors 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 interfaceMacFactoryClasses in org.apache.sshd.common.mac that implement Factory Modifier and Type Class Description classBuiltinMacsProvides 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 interfaceRandomFactoryClasses in org.apache.sshd.common.random that implement Factory Modifier and Type Class Description classAbstractRandomFactoryclassJceRandomFactoryNamed factory for the JCERandomclassSingletonRandomFactoryA 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 interfaceSignatureFactoryClasses in org.apache.sshd.common.signature that implement Factory Modifier and Type Class Description classBuiltinSignaturesProvides 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 classBouncyCastleRandomFactoryNamed 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 classBuiltinUserAuthFactoriesProvides a centralized location for the default built-in authentication factories
-