Uses of Interface
org.apache.sshd.server.command.Command
-
Packages that use Command Package Description org.apache.sshd.server.channel org.apache.sshd.server.command org.apache.sshd.server.shell org.apache.sshd.server.subsystem -
-
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 CommandChannelSession. commandInstanceMethods in org.apache.sshd.server.channel that return Command Modifier and Type Method Description protected CommandChannelSession. prepareCommand(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.ResultChannelSession. prepareChannelCommand(String request, Command cmd)protected CommandChannelSession. prepareCommand(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 interfaceAsyncCommandRepresents a command capable of doing non-blocking io.Classes in org.apache.sshd.server.command that implement Command Modifier and Type Class Description classAbstractCommandSupportProvides a basic useful skeleton forCommandexecutionsclassAbstractFileSystemCommandProvides a basic useful skeleton forCommandexecutions that require file system accessMethods in org.apache.sshd.server.command that return Command Modifier and Type Method Description CommandAbstractDelegatingCommandFactory. createCommand(ChannelSession channel, String command)CommandCommandFactory. createCommand(ChannelSession channel, String command)Create a command with the given name.protected CommandAbstractDelegatingCommandFactory. createUnsupportedCommand(ChannelSession channel, String command)protected abstract CommandAbstractDelegatingCommandFactory. executeSupportedCommand(ChannelSession channel, 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 classInvertedShellWrapperA shell implementation that wraps an instance ofInvertedShellas aCommand.classUnknownCommandImplementation of an unknown command that can be returned byCommandFactorywhen the command is not known, as it is supposed to always return a validCommandobject.Methods in org.apache.sshd.server.shell that return Command Modifier and Type Method Description CommandProcessShellCommandFactory. createCommand(ChannelSession channel, String command)CommandUnknownCommandFactory. createCommand(ChannelSession channel, String command)CommandAggregateShellFactory. createShell(ChannelSession channel)CommandProcessShellFactory. createShell(ChannelSession channel)CommandShellFactory. 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 CommandSubsystemFactory. createSubsystem(ChannelSession channel)static CommandSubsystemFactory. createSubsystem(ChannelSession channel, Collection<? extends SubsystemFactory> factories, String name)
-