Uses of Interface
org.apache.sshd.server.command.Command
-
-
Uses of Command in org.apache.sshd.server.channel
Fields in org.apache.sshd.server.channel declared as Command Modifier and Type Field Description protected Command
ChannelSession. commandInstance
Methods in org.apache.sshd.server.channel that return Command Modifier and Type Method Description protected Command
ChannelSession. prepareCommand(java.lang.String requestType, Command command)
Called byChannelSession.prepareChannelCommand(String, Command)
in order to set up the command's streams, session, file-system, exit callback, etc..Methods in org.apache.sshd.server.channel with parameters of type Command Modifier and Type Method Description protected RequestHandler.Result
ChannelSession. prepareChannelCommand(java.lang.String request, Command cmd)
protected Command
ChannelSession. prepareCommand(java.lang.String requestType, Command command)
Called byChannelSession.prepareChannelCommand(String, Command)
in order to set up the command's streams, session, file-system, exit callback, etc.. -
Uses of Command in org.apache.sshd.server.command
Subinterfaces of Command in org.apache.sshd.server.command Modifier and Type Interface Description interface
AsyncCommand
Represents a command capable of doing non-blocking io.Classes in org.apache.sshd.server.command that implement Command Modifier and Type Class Description class
AbstractCommandSupport
Provides a basic useful skeleton forCommand
executionsclass
AbstractFileSystemCommand
Provides a basic useful skeleton forCommand
executions that require file system accessMethods in org.apache.sshd.server.command that return Command Modifier and Type Method Description Command
AbstractDelegatingCommandFactory. createCommand(ChannelSession channel, java.lang.String command)
Command
CommandFactory. createCommand(ChannelSession channel, java.lang.String command)
Create a command with the given name.protected Command
AbstractDelegatingCommandFactory. createUnsupportedCommand(java.lang.String command)
protected abstract Command
AbstractDelegatingCommandFactory. executeSupportedCommand(java.lang.String command)
-
Uses of Command in org.apache.sshd.server.scp
Classes in org.apache.sshd.server.scp that implement Command Modifier and Type Class Description class
ScpCommand
This commands provide SCP support on both server and client side.Methods in org.apache.sshd.server.scp that return Command Modifier and Type Method Description protected Command
ScpCommandFactory. executeSupportedCommand(java.lang.String command)
-
Uses of Command in org.apache.sshd.server.shell
Classes in org.apache.sshd.server.shell that implement Command Modifier and Type Class Description class
InvertedShellWrapper
A shell implementation that wraps an instance ofInvertedShell
as aCommand
.class
UnknownCommand
Implementation of an unknown command that can be returned byCommandFactory
when the command is not known, as it is supposed to always return a validCommand
object.Methods in org.apache.sshd.server.shell that return Command Modifier and Type Method Description Command
ProcessShellCommandFactory. createCommand(ChannelSession channel, java.lang.String command)
Command
UnknownCommandFactory. createCommand(ChannelSession channel, java.lang.String command)
Command
ProcessShellFactory. createShell(ChannelSession channel)
Command
ShellFactory. createShell(ChannelSession channel)
-
Uses of Command in org.apache.sshd.server.subsystem
Methods in org.apache.sshd.server.subsystem that return Command Modifier and Type Method Description Command
SubsystemFactory. createSubsystem(ChannelSession channel)
static Command
SubsystemFactory. createSubsystem(ChannelSession channel, java.util.Collection<? extends SubsystemFactory> factories, java.lang.String name)
-
Uses of Command in org.apache.sshd.server.subsystem.sftp
Classes in org.apache.sshd.server.subsystem.sftp that implement Command Modifier and Type Class Description class
SftpSubsystem
SFTP subsystemMethods in org.apache.sshd.server.subsystem.sftp that return Command Modifier and Type Method Description Command
SftpSubsystemFactory. createSubsystem(ChannelSession channel)
-