Package org.apache.sshd.agent.local
Class LocalAgentFactory
java.lang.Object
org.apache.sshd.agent.local.LocalAgentFactory
- All Implemented Interfaces:
SshAgentFactory
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateClient
(FactoryManager manager) Create an SshAgent that can be used on the client side by the authentication process to send possible keys.createServer
(ConnectionService service) Create the server side that will be used by other SSH clients.getAgent()
The channels are requested by the ssh server when forwarding a client request.
-
Field Details
-
DEFAULT_FORWARDING_CHANNELS
-
agent
-
-
Constructor Details
-
LocalAgentFactory
public LocalAgentFactory() -
LocalAgentFactory
-
-
Method Details
-
getAgent
-
getChannelForwardingFactories
Description copied from interface:SshAgentFactory
The channels are requested by the ssh server when forwarding a client request. The channel will receive agent requests and need to forward them to the agent, either local or through another proxy.- Specified by:
getChannelForwardingFactories
in interfaceSshAgentFactory
- Parameters:
manager
- TheFactoryManager
through which the request is made- Returns:
- The
ChannelFactory
-ies used to create channels on the client side
-
createClient
Description copied from interface:SshAgentFactory
Create an SshAgent that can be used on the client side by the authentication process to send possible keys.- Specified by:
createClient
in interfaceSshAgentFactory
- Parameters:
manager
- TheFactoryManager
instance- Returns:
- The
SshAgent
instance - Throws:
IOException
- If failed to create the client
-
createServer
Description copied from interface:SshAgentFactory
Create the server side that will be used by other SSH clients. It will usually create a channel that will forward the requests to the original client.- Specified by:
createServer
in interfaceSshAgentFactory
- Parameters:
service
- TheConnectionService
to use- Returns:
- The
SshAgentServer
instance - Throws:
IOException
- If failed to create the server
-