Uses of Interface
org.apache.sshd.common.AttributeRepository
-
-
Uses of AttributeRepository in org.apache.sshd.agent.local
Classes in org.apache.sshd.agent.local that implement AttributeRepository Modifier and Type Class Description class
AgentForwardedChannel
class
ChannelAgentForwarding
The client side channel that will receive requests forwards by the SSH server. -
Uses of AttributeRepository in org.apache.sshd.client
Subinterfaces of AttributeRepository in org.apache.sshd.client Modifier and Type Interface Description interface
ClientFactoryManager
TheClientFactoryManager
enable the retrieval of additional configuration needed specifically for the client side.Classes in org.apache.sshd.client that implement AttributeRepository Modifier and Type Class Description class
SshClient
Entry point for the client side of the SSH protocol.Methods in org.apache.sshd.client with parameters of type AttributeRepository Modifier and Type Method Description ConnectFuture
SshClient. connect(String username, String host, int port, AttributeRepository context, SocketAddress localAddress)
ConnectFuture
SshClient. connect(String username, SocketAddress targetAddress, AttributeRepository context, SocketAddress localAddress)
ConnectFuture
SshClient. connect(HostConfigEntry hostConfig, AttributeRepository context, SocketAddress localAddress)
protected ConnectFuture
SshClient. doConnect(String username, SocketAddress targetAddress, AttributeRepository context, SocketAddress localAddress, KeyIdentityProvider identities, boolean useDefaultIdentities)
-
Uses of AttributeRepository in org.apache.sshd.client.channel
Subinterfaces of AttributeRepository in org.apache.sshd.client.channel Modifier and Type Interface Description interface
ClientChannel
A client channel used to communicate with the SSH server.Classes in org.apache.sshd.client.channel that implement AttributeRepository Modifier and Type Class Description class
AbstractClientChannel
TODO Add javadocclass
ChannelDirectTcpip
TODO Add javadocclass
ChannelExec
Client channel to run a remote commandclass
ChannelSession
Client side channel sessionclass
ChannelShell
Client channel to open a remote shellclass
ChannelSubsystem
Client channel to run a subsystemclass
PtyCapableChannelSession
Serves as the base channel session for executing remote commands - including a full shell. -
Uses of AttributeRepository in org.apache.sshd.client.config.hosts
Methods in org.apache.sshd.client.config.hosts with parameters of type AttributeRepository Modifier and Type Method Description HostConfigEntry
ConfigFileHostEntryResolver. resolveEffectiveHost(String host, int port, SocketAddress localAddress, String username, AttributeRepository context)
HostConfigEntry
HostConfigEntryResolver. resolveEffectiveHost(String host, int port, SocketAddress localAddress, String username, AttributeRepository context)
Invoked when creating a new client session in order to allow for overriding of the original parameters -
Uses of AttributeRepository in org.apache.sshd.client.session
Subinterfaces of AttributeRepository in org.apache.sshd.client.session Modifier and Type Interface Description interface
ClientSession
An authenticated session to a given SSH server.Classes in org.apache.sshd.client.session that implement AttributeRepository Modifier and Type Class Description class
AbstractClientSession
Provides default implementations ofClientSession
related methodsclass
ClientSessionImpl
The default implementation of aClientSession
Methods in org.apache.sshd.client.session that return AttributeRepository Modifier and Type Method Description AttributeRepository
AbstractClientSession. getConnectionContext()
AttributeRepository
ClientSession. getConnectionContext()
Methods in org.apache.sshd.client.session with parameters of type AttributeRepository Modifier and Type Method Description default ConnectFuture
ClientSessionCreator. connect(String username, String host, int port, AttributeRepository context)
Resolves the effectiveHostConfigEntry
and connects to itConnectFuture
ClientSessionCreator. connect(String username, String host, int port, AttributeRepository context, SocketAddress localAddress)
Resolves the effectiveHostConfigEntry
and connects to itdefault ConnectFuture
ClientSessionCreator. connect(String username, SocketAddress address, AttributeRepository context)
Resolves the effectiveHostConfigEntry
and connects to itConnectFuture
ClientSessionCreator. connect(String username, SocketAddress targetAddress, AttributeRepository context, SocketAddress localAddress)
Resolves the effectiveHostConfigEntry
and connects to itdefault ConnectFuture
ClientSessionCreator. connect(HostConfigEntry hostConfig, AttributeRepository context)
ConnectFuture
ClientSessionCreator. connect(HostConfigEntry hostConfig, AttributeRepository context, SocketAddress localAddress)
-
Uses of AttributeRepository in org.apache.sshd.common
Subinterfaces of AttributeRepository in org.apache.sshd.common Modifier and Type Interface Description interface
AttributeStore
Provides the capability to attach in-memory attributes to the entityinterface
FactoryManager
This interface allows retrieving all theNamedFactory
used in the SSH protocol.Methods in org.apache.sshd.common that return AttributeRepository Modifier and Type Method Description static AttributeRepository
AttributeRepository. ofAttributesMap(Map<AttributeRepository.AttributeKey<?>,?> attributes)
static <A> AttributeRepository
AttributeRepository. ofKeyValuePair(AttributeRepository.AttributeKey<A> key, A value)
-
Uses of AttributeRepository in org.apache.sshd.common.channel
Subinterfaces of AttributeRepository in org.apache.sshd.common.channel Modifier and Type Interface Description interface
Channel
Represents a channel opened over an SSH session - holds information that is common both to server and client channels.Classes in org.apache.sshd.common.channel that implement AttributeRepository Modifier and Type Class Description class
AbstractChannel
Provides common client/server channel functionality -
Uses of AttributeRepository in org.apache.sshd.common.forward
Classes in org.apache.sshd.common.forward that implement AttributeRepository Modifier and Type Class Description class
TcpipClientChannel
TODO Add javadoc -
Uses of AttributeRepository in org.apache.sshd.common.helpers
Classes in org.apache.sshd.common.helpers that implement AttributeRepository Modifier and Type Class Description class
AbstractFactoryManager
-
Uses of AttributeRepository in org.apache.sshd.common.io
Methods in org.apache.sshd.common.io with parameters of type AttributeRepository Modifier and Type Method Description default void
IoServiceEventListener. abortEstablishedConnection(IoConnector connector, SocketAddress local, AttributeRepository context, SocketAddress remote, Throwable reason)
Called when a previously established connection has been abnormally terminated before it could be turned into a sessionIoConnectFuture
IoConnector. connect(SocketAddress targetAddress, AttributeRepository context, SocketAddress localAddress)
default void
IoServiceEventListener. connectionEstablished(IoConnector connector, SocketAddress local, AttributeRepository context, SocketAddress remote)
Called when a new connection has been created to a remote peer - before it was converted into a session -
Uses of AttributeRepository in org.apache.sshd.common.io.nio2
Fields in org.apache.sshd.common.io.nio2 declared as AttributeRepository Modifier and Type Field Description protected AttributeRepository
Nio2Connector.ConnectionCompletionHandler. context
Methods in org.apache.sshd.common.io.nio2 with parameters of type AttributeRepository Modifier and Type Method Description IoConnectFuture
Nio2Connector. connect(SocketAddress address, AttributeRepository context, SocketAddress localAddress)
protected Nio2CompletionHandler<Void,Object>
Nio2Connector. createConnectionCompletionHandler(IoConnectFuture future, AsynchronousSocketChannel socket, AttributeRepository context, FactoryManager manager, IoHandler handler)
Constructors in org.apache.sshd.common.io.nio2 with parameters of type AttributeRepository Constructor Description ConnectionCompletionHandler(IoConnectFuture future, AsynchronousSocketChannel socket, AttributeRepository context, FactoryManager manager, IoHandler handler)
-
Uses of AttributeRepository in org.apache.sshd.common.session
Subinterfaces of AttributeRepository in org.apache.sshd.common.session Modifier and Type Interface Description interface
Session
Represents an SSH session.interface
SessionContext
A "succinct" summary of the most important attributes of an SSH session -
Uses of AttributeRepository in org.apache.sshd.common.session.helpers
Classes in org.apache.sshd.common.session.helpers that implement AttributeRepository Modifier and Type Class Description class
AbstractSession
The AbstractSession handles all the basic SSH protocol such as key exchange, authentication, encoding and decoding.class
SessionHelper
Contains split code in order to makeAbstractSession
class smaller -
Uses of AttributeRepository in org.apache.sshd.server
Subinterfaces of AttributeRepository in org.apache.sshd.server Modifier and Type Interface Description interface
ServerFactoryManager
TheServerFactoryManager
enable the retrieval of additional configuration needed specifically for the server side.Classes in org.apache.sshd.server that implement AttributeRepository Modifier and Type Class Description class
SshServer
The SshServer class is the main entry point for the server side of the SSH protocol. -
Uses of AttributeRepository in org.apache.sshd.server.channel
Subinterfaces of AttributeRepository in org.apache.sshd.server.channel Modifier and Type Interface Description interface
ServerChannel
Classes in org.apache.sshd.server.channel that implement AttributeRepository Modifier and Type Class Description class
AbstractServerChannel
TODO Add javadocclass
ChannelSession
Server side channel session -
Uses of AttributeRepository in org.apache.sshd.server.forward
Classes in org.apache.sshd.server.forward that implement AttributeRepository Modifier and Type Class Description class
TcpipServerChannel
TODO Add javadoc -
Uses of AttributeRepository in org.apache.sshd.server.session
Subinterfaces of AttributeRepository in org.apache.sshd.server.session Modifier and Type Interface Description interface
ServerSession
Classes in org.apache.sshd.server.session that implement AttributeRepository Modifier and Type Class Description class
AbstractServerSession
Provides default implementations forServerSession
related methodsclass
ServerSessionImpl
The default implementation for aServerSession
-
Uses of AttributeRepository in org.apache.sshd.server.subsystem.sftp
Classes in org.apache.sshd.server.subsystem.sftp that implement AttributeRepository Modifier and Type Class Description class
DirectoryHandle
class
FileHandle
class
Handle
-
Uses of AttributeRepository in org.apache.sshd.server.x11
Classes in org.apache.sshd.server.x11 that implement AttributeRepository Modifier and Type Class Description class
ChannelForwardedX11
-