Uses of Interface
org.apache.sshd.common.channel.RequestHandler
-
-
Uses of RequestHandler in org.apache.sshd.client
Fields in org.apache.sshd.client with type parameters of type RequestHandler Modifier and Type Field Description static java.util.List<RequestHandler<ConnectionService>>
ClientBuilder. DEFAULT_GLOBAL_REQUEST_HANDLERS
-
Uses of RequestHandler in org.apache.sshd.client.channel
Constructor parameters in org.apache.sshd.client.channel with type arguments of type RequestHandler Constructor Description AbstractClientChannel(java.lang.String type, java.util.Collection<? extends RequestHandler<Channel>> handlers)
-
Uses of RequestHandler in org.apache.sshd.client.channel.exit
Classes in org.apache.sshd.client.channel.exit that implement RequestHandler Modifier and Type Class Description class
AbstractChannelExitRequestHandler<V>
Provides a common base class for channel request handlers that deal with various "exit-XXX
" requests.class
ExitSignalChannelRequestHandler
class
ExitStatusChannelRequestHandler
-
Uses of RequestHandler in org.apache.sshd.client.global
Classes in org.apache.sshd.client.global that implement RequestHandler Modifier and Type Class Description class
OpenSshHostKeysHandler
A handler for the "hostkeys-00@openssh.com" request - for now, only reads the presented host key. -
Uses of RequestHandler in org.apache.sshd.common
Fields in org.apache.sshd.common with type parameters of type RequestHandler Modifier and Type Field Description protected java.util.List<RequestHandler<ConnectionService>>
BaseBuilder. globalRequestHandlers
Methods in org.apache.sshd.common that return types with arguments of type RequestHandler Modifier and Type Method Description java.util.List<RequestHandler<ConnectionService>>
FactoryManager. getGlobalRequestHandlers()
Retrieve the list of global request handlers.Method parameters in org.apache.sshd.common with type arguments of type RequestHandler Modifier and Type Method Description S
BaseBuilder. globalRequestHandlers(java.util.List<RequestHandler<ConnectionService>> globalRequestHandlers)
-
Uses of RequestHandler in org.apache.sshd.common.channel
Subinterfaces of RequestHandler in org.apache.sshd.common.channel Modifier and Type Interface Description interface
ChannelRequestHandler
Classes in org.apache.sshd.common.channel that implement RequestHandler Modifier and Type Class Description class
AbstractChannelRequestHandler
class
AbstractRequestHandler<T>
Fields in org.apache.sshd.common.channel with type parameters of type RequestHandler Modifier and Type Field Description static java.util.function.Function<ChannelRequestHandler,RequestHandler<Channel>>
ChannelRequestHandler. CHANN2HNDLR
private java.util.List<RequestHandler<Channel>>
AbstractChannel. requestHandlers
Methods in org.apache.sshd.common.channel that return types with arguments of type RequestHandler Modifier and Type Method Description java.util.List<RequestHandler<Channel>>
AbstractChannel. getRequestHandlers()
java.util.List<RequestHandler<Channel>>
Channel. getRequestHandlers()
Methods in org.apache.sshd.common.channel with parameters of type RequestHandler Modifier and Type Method Description void
AbstractChannel. addRequestHandler(RequestHandler<Channel> handler)
void
Channel. addRequestHandler(RequestHandler<Channel> handler)
void
AbstractChannel. removeRequestHandler(RequestHandler<Channel> handler)
void
Channel. removeRequestHandler(RequestHandler<Channel> handler)
Method parameters in org.apache.sshd.common.channel with type arguments of type RequestHandler Modifier and Type Method Description default void
Channel. addRequestHandlers(java.util.Collection<? extends RequestHandler<Channel>> handlers)
default void
Channel. removeRequestHandlers(java.util.Collection<? extends RequestHandler<Channel>> handlers)
Constructor parameters in org.apache.sshd.common.channel with type arguments of type RequestHandler Constructor Description AbstractChannel(boolean client, java.util.Collection<? extends RequestHandler<Channel>> handlers)
AbstractChannel(java.lang.String discriminator, boolean client, java.util.Collection<? extends RequestHandler<Channel>> handlers, CloseableExecutorService executorService)
-
Uses of RequestHandler in org.apache.sshd.common.global
Classes in org.apache.sshd.common.global that implement RequestHandler Modifier and Type Class Description class
AbstractOpenSshHostKeysHandler
class
KeepAliveHandler
Handler for "keepalive@xxx" global request. -
Uses of RequestHandler in org.apache.sshd.common.helpers
Fields in org.apache.sshd.common.helpers with type parameters of type RequestHandler Modifier and Type Field Description protected java.util.List<RequestHandler<ConnectionService>>
AbstractFactoryManager. globalRequestHandlers
Methods in org.apache.sshd.common.helpers that return types with arguments of type RequestHandler Modifier and Type Method Description java.util.List<RequestHandler<ConnectionService>>
AbstractFactoryManager. getGlobalRequestHandlers()
Method parameters in org.apache.sshd.common.helpers with type arguments of type RequestHandler Modifier and Type Method Description void
AbstractFactoryManager. setGlobalRequestHandlers(java.util.List<RequestHandler<ConnectionService>> globalRequestHandlers)
-
Uses of RequestHandler in org.apache.sshd.common.session
Subinterfaces of RequestHandler in org.apache.sshd.common.session Modifier and Type Interface Description interface
ConnectionServiceRequestHandler
Fields in org.apache.sshd.common.session with type parameters of type RequestHandler Modifier and Type Field Description static java.util.function.Function<ConnectionServiceRequestHandler,RequestHandler<ConnectionService>>
ConnectionServiceRequestHandler. SVC2HNDLR
-
Uses of RequestHandler in org.apache.sshd.common.session.helpers
Classes in org.apache.sshd.common.session.helpers that implement RequestHandler Modifier and Type Class Description class
AbstractConnectionServiceRequestHandler
-
Uses of RequestHandler in org.apache.sshd.server
Fields in org.apache.sshd.server with type parameters of type RequestHandler Modifier and Type Field Description static java.util.List<RequestHandler<ConnectionService>>
ServerBuilder. DEFAULT_GLOBAL_REQUEST_HANDLERS
-
Uses of RequestHandler in org.apache.sshd.server.channel
Classes in org.apache.sshd.server.channel that implement RequestHandler Modifier and Type Class Description class
PuttyRequestHandler
Handles Putty specific channel requests as indicated by Appendix F: SSH-2 names specified for PuTTYConstructor parameters in org.apache.sshd.server.channel with type arguments of type RequestHandler Constructor Description AbstractServerChannel(java.lang.String discriminator, java.util.Collection<? extends RequestHandler<Channel>> handlers, CloseableExecutorService executor)
ChannelSession(java.util.Collection<? extends RequestHandler<Channel>> handlers)
-
Uses of RequestHandler in org.apache.sshd.server.global
Classes in org.apache.sshd.server.global that implement RequestHandler Modifier and Type Class Description class
CancelTcpipForwardHandler
Handler for "cancel-tcpip-forward" global request.class
NoMoreSessionsHandler
Handler for "no-more-sessions@xxx" global request.class
OpenSshHostKeysHandler
An initial handler for "hostkeys-prove-00@openssh.com" requestclass
TcpipForwardHandler
Handler for "tcpip-forward" global request.
-