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 classAgentForwardedChannelclassChannelAgentForwardingThe 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 interfaceClientFactoryManagerTheClientFactoryManagerenable 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 classSshClientEntry 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 ConnectFutureSshClient. connect(java.lang.String username, java.lang.String host, int port, AttributeRepository context, java.net.SocketAddress localAddress)ConnectFutureSshClient. connect(java.lang.String username, java.net.SocketAddress targetAddress, AttributeRepository context, java.net.SocketAddress localAddress)ConnectFutureSshClient. connect(HostConfigEntry hostConfig, AttributeRepository context, java.net.SocketAddress localAddress)protected ConnectFutureSshClient. doConnect(java.lang.String username, java.net.SocketAddress targetAddress, AttributeRepository context, java.net.SocketAddress localAddress, KeyIdentityProvider identities, HostConfigEntry hostConfig)protected ConnectFutureSshClient. doConnect(HostConfigEntry hostConfig, java.util.List<HostConfigEntry> jumps, AttributeRepository context, java.net.SocketAddress localAddress)protected java.util.List<HostConfigEntry>SshClient. parseProxyJumps(java.lang.String proxyJump, AttributeRepository context)protected HostConfigEntrySshClient. resolveHost(java.lang.String username, java.lang.String host, int port, AttributeRepository context, java.net.SocketAddress localAddress) -
Uses of AttributeRepository in org.apache.sshd.client.channel
Subinterfaces of AttributeRepository in org.apache.sshd.client.channel Modifier and Type Interface Description interfaceClientChannelA client channel used to communicate with the SSH server.Classes in org.apache.sshd.client.channel that implement AttributeRepository Modifier and Type Class Description classAbstractClientChannelTODO Add javadocclassChannelDirectTcpipTODO Add javadocclassChannelExecClient channel to run a remote commandclassChannelSessionClient side channel sessionclassChannelShellClient channel to open a remote shellclassChannelSubsystemClient channel to run a subsystemclassPtyCapableChannelSessionServes 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 HostConfigEntryConfigFileHostEntryResolver. resolveEffectiveHost(java.lang.String host, int port, java.net.SocketAddress localAddress, java.lang.String username, java.lang.String proxyJump, AttributeRepository context)HostConfigEntryHostConfigEntryResolver. resolveEffectiveHost(java.lang.String host, int port, java.net.SocketAddress localAddress, java.lang.String username, java.lang.String proxyJump, 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 interfaceClientSessionAn authenticated session to a given SSH server.Classes in org.apache.sshd.client.session that implement AttributeRepository Modifier and Type Class Description classAbstractClientSessionProvides default implementations ofClientSessionrelated methodsclassClientSessionImplThe default implementation of aClientSessionFields in org.apache.sshd.client.session declared as AttributeRepository Modifier and Type Field Description private AttributeRepositoryAbstractClientSession. connectionContextMethods in org.apache.sshd.client.session that return AttributeRepository Modifier and Type Method Description AttributeRepositoryAbstractClientSession. getConnectionContext()AttributeRepositoryClientSession. getConnectionContext()Methods in org.apache.sshd.client.session with parameters of type AttributeRepository Modifier and Type Method Description default ConnectFutureClientSessionCreator. connect(java.lang.String username, java.lang.String host, int port, AttributeRepository context)Resolves the effectiveHostConfigEntryand connects to itConnectFutureClientSessionCreator. connect(java.lang.String username, java.lang.String host, int port, AttributeRepository context, java.net.SocketAddress localAddress)Resolves the effectiveHostConfigEntryand connects to itdefault ConnectFutureClientSessionCreator. connect(java.lang.String username, java.net.SocketAddress address, AttributeRepository context)Resolves the effectiveHostConfigEntryand connects to itConnectFutureClientSessionCreator. connect(java.lang.String username, java.net.SocketAddress targetAddress, AttributeRepository context, java.net.SocketAddress localAddress)Resolves the effectiveHostConfigEntryand connects to itdefault ConnectFutureClientSessionCreator. connect(HostConfigEntry hostConfig, AttributeRepository context)ConnectFutureClientSessionCreator. connect(HostConfigEntry hostConfig, AttributeRepository context, java.net.SocketAddress localAddress) -
Uses of AttributeRepository in org.apache.sshd.common
Subinterfaces of AttributeRepository in org.apache.sshd.common Modifier and Type Interface Description interfaceAttributeStoreProvides the capability to attach in-memory attributes to the entityinterfaceFactoryManagerThis interface allows retrieving all theNamedFactoryused in the SSH protocol.Methods in org.apache.sshd.common that return AttributeRepository Modifier and Type Method Description static AttributeRepositoryAttributeRepository. ofAttributesMap(java.util.Map<AttributeRepository.AttributeKey<?>,?> attributes)static <A> AttributeRepositoryAttributeRepository. 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 interfaceChannelRepresents 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 classAbstractChannelProvides 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 classTcpipClientChannelTODO 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 classAbstractFactoryManager -
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 voidIoServiceEventListener. abortEstablishedConnection(IoConnector connector, java.net.SocketAddress local, AttributeRepository context, java.net.SocketAddress remote, java.lang.Throwable reason)Called when a previously established connection has been abnormally terminated before it could be turned into a sessionIoConnectFutureIoConnector. connect(java.net.SocketAddress targetAddress, AttributeRepository context, java.net.SocketAddress localAddress)default voidIoServiceEventListener. connectionEstablished(IoConnector connector, java.net.SocketAddress local, AttributeRepository context, java.net.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 AttributeRepositoryNio2Connector.ConnectionCompletionHandler. contextMethods in org.apache.sshd.common.io.nio2 with parameters of type AttributeRepository Modifier and Type Method Description IoConnectFutureNio2Connector. connect(java.net.SocketAddress address, AttributeRepository context, java.net.SocketAddress localAddress)protected Nio2CompletionHandler<java.lang.Void,java.lang.Object>Nio2Connector. createConnectionCompletionHandler(IoConnectFuture future, java.nio.channels.AsynchronousSocketChannel socket, AttributeRepository context, PropertyResolver propertyResolver, IoHandler handler)Constructors in org.apache.sshd.common.io.nio2 with parameters of type AttributeRepository Constructor Description ConnectionCompletionHandler(IoConnectFuture future, java.nio.channels.AsynchronousSocketChannel socket, AttributeRepository context, PropertyResolver propertyResolver, 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 interfaceSessionRepresents an SSH session.interfaceSessionContextA "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 classAbstractSessionThe AbstractSession handles all the basic SSH protocol such as key exchange, authentication, encoding and decoding.classSessionHelperContains split code in order to makeAbstractSessionclass smaller -
Uses of AttributeRepository in org.apache.sshd.server
Subinterfaces of AttributeRepository in org.apache.sshd.server Modifier and Type Interface Description interfaceServerFactoryManagerTheServerFactoryManagerenable 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 classSshServerThe 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 interfaceServerChannelClasses in org.apache.sshd.server.channel that implement AttributeRepository Modifier and Type Class Description classAbstractServerChannelTODO Add javadocclassChannelSessionServer 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 classTcpipServerChannelTODO 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 interfaceServerSessionClasses in org.apache.sshd.server.session that implement AttributeRepository Modifier and Type Class Description classAbstractServerSessionProvides default implementations forServerSessionrelated methodsclassServerSessionImplThe default implementation for aServerSession -
Uses of AttributeRepository in org.apache.sshd.server.x11
Classes in org.apache.sshd.server.x11 that implement AttributeRepository Modifier and Type Class Description classChannelForwardedX11 -
Uses of AttributeRepository in org.apache.sshd.sftp.client.impl
Classes in org.apache.sshd.sftp.client.impl that implement AttributeRepository Modifier and Type Class Description protected classDefaultSftpClient.SftpChannelSubsystem -
Uses of AttributeRepository in org.apache.sshd.sftp.server
Classes in org.apache.sshd.sftp.server that implement AttributeRepository Modifier and Type Class Description classDirectoryHandleclassFileHandleclassHandle
-