Uses of Interface
org.apache.sshd.server.shell.ShellFactory
-
Packages that use ShellFactory Package Description org.apache.sshd.scp.server org.apache.sshd.server org.apache.sshd.server.shell -
-
Uses of ShellFactory in org.apache.sshd.scp.server
Classes in org.apache.sshd.scp.server that implement ShellFactory Modifier and Type Class Description class
ScpCommandFactory
ThisCommandFactory
can be used as a standalone command factory or can be used to augment anotherCommandFactory
and providesSCP
support.Fields in org.apache.sshd.scp.server declared as ShellFactory Modifier and Type Field Description private ShellFactory
ScpCommandFactory. delegateShellFactory
Methods in org.apache.sshd.scp.server that return ShellFactory Modifier and Type Method Description ShellFactory
ScpCommandFactory. getDelegateShellFactory()
ShellFactory
ScpCommandFactory. selectShellFactory(ChannelSession channelSession)
Methods in org.apache.sshd.scp.server with parameters of type ShellFactory Modifier and Type Method Description void
ScpCommandFactory. setDelegateShellFactory(ShellFactory delegateShellFactory)
ScpCommandFactory.Builder
ScpCommandFactory.Builder. withDelegateShellFactory(ShellFactory shellFactory)
-
Uses of ShellFactory in org.apache.sshd.server
Fields in org.apache.sshd.server declared as ShellFactory Modifier and Type Field Description private ShellFactory
SshServer. shellFactory
Methods in org.apache.sshd.server that return ShellFactory Modifier and Type Method Description ShellFactory
ServerFactoryManager. getShellFactory()
Retrieve theShellFactory
object to be used to create shells.ShellFactory
SshServer. getShellFactory()
Methods in org.apache.sshd.server with parameters of type ShellFactory Modifier and Type Method Description void
SshServer. setShellFactory(ShellFactory shellFactory)
-
Uses of ShellFactory in org.apache.sshd.server.shell
Classes in org.apache.sshd.server.shell that implement ShellFactory Modifier and Type Class Description class
AggregateShellFactory
Provides different shell(s) based on some criteria of the providedChannelSession
class
InteractiveProcessShellFactory
A simplistic interactive shell factoryclass
ProcessShellFactory
Fields in org.apache.sshd.server.shell declared as ShellFactory Modifier and Type Field Description protected ShellFactory
AggregateShellFactory. defaultFactory
Methods in org.apache.sshd.server.shell that return ShellFactory Modifier and Type Method Description ShellFactory
AggregateShellFactory. selectShellFactory(ChannelSession channel)
static ShellFactory
ShellFactorySelector. selectShellFactory(java.util.Collection<? extends ShellFactorySelector> selectors, ChannelSession channel)
Consults each selector whether it wants to provide a factory for theChannelSession
ShellFactory
ShellFactorySelector. selectShellFactory(ChannelSession channelSession)
Constructors in org.apache.sshd.server.shell with parameters of type ShellFactory Constructor Description AggregateShellFactory(java.util.Collection<? extends ShellFactorySelector> selectors, ShellFactory defaultFactory)
-