Uses of Interface
org.apache.sshd.server.Command

Packages that use Command
org.apache.sshd Defines the two main classes for the client and server side of SSH protocol support. 
org.apache.sshd.server   
org.apache.sshd.server.channel   
org.apache.sshd.server.command   
org.apache.sshd.server.sftp   
org.apache.sshd.server.shell   
 

Uses of Command in org.apache.sshd
 

Fields in org.apache.sshd with type parameters of type Command
protected  Factory<Command> SshServer.shellFactory
           
protected  List<NamedFactory<Command>> SshServer.subsystemFactories
           
 

Methods in org.apache.sshd that return types with arguments of type Command
 Factory<Command> SshServer.getShellFactory()
           
 List<NamedFactory<Command>> SshServer.getSubsystemFactories()
           
 

Method parameters in org.apache.sshd with type arguments of type Command
 void SshServer.setShellFactory(Factory<Command> shellFactory)
           
 void SshServer.setSubsystemFactories(List<NamedFactory<Command>> subsystemFactories)
           
 

Uses of Command in org.apache.sshd.server
 

Methods in org.apache.sshd.server that return Command
 Command CommandFactory.createCommand(String command)
          Create a command with the given name.
 

Methods in org.apache.sshd.server that return types with arguments of type Command
 Factory<Command> ServerFactoryManager.getShellFactory()
          Retrieve the ShellFactory object to be used to create shells.
 List<NamedFactory<Command>> ServerFactoryManager.getSubsystemFactories()
          Retrieve the list of named factories for CommandFactory.Command to be used to create subsystems.
 

Uses of Command in org.apache.sshd.server.channel
 

Fields in org.apache.sshd.server.channel declared as Command
protected  Command ChannelSession.command
           
 

Uses of Command in org.apache.sshd.server.command
 

Classes in org.apache.sshd.server.command that implement Command
 class ScpCommand
          This commands provide SCP support on both server and client side.
 class UnknownCommand
          Implementation of an unknown command that can be returned by CommandFactory when the command is not known, as it is supposed to always return a valid Command object.
 

Methods in org.apache.sshd.server.command that return Command
 Command ScpCommandFactory.createCommand(String command)
          Parses a command string and verifies that the basic syntax is correct.
 

Uses of Command in org.apache.sshd.server.sftp
 

Classes in org.apache.sshd.server.sftp that implement Command
 class SftpSubsystem
          SFTP subsystem
 

Methods in org.apache.sshd.server.sftp that return Command
 Command SftpSubsystem.Factory.create()
           
 

Uses of Command in org.apache.sshd.server.shell
 

Classes in org.apache.sshd.server.shell that implement Command
 class InvertedShellWrapper
          A shell implementation that wraps an instance of InvertedShell as a ShellFactory.Shell.
 

Methods in org.apache.sshd.server.shell that return Command
 Command ProcessShellFactory.create()
           
 



Copyright © 2008-2012 Apache Software Foundation. All Rights Reserved.