All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.sshd.agent.SshAgentFactory Maven / Gradle / Ivy

There is a newer version: 2.14.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.sshd.agent;

import java.io.IOException;
import java.util.List;

import org.apache.sshd.common.FactoryManager;
import org.apache.sshd.common.channel.ChannelFactory;
import org.apache.sshd.common.session.ConnectionService;
import org.apache.sshd.common.session.Session;

/**
 * The SshAgentFactory is used to communicate with an SshAgent.
 */
public interface SshAgentFactory {

    /**
     * The channels are requested by the ssh server when forwarding a client request. The channel will receive agent
     * requests and needs to forward them to the agent, either local or through another proxy.
     *
     * @param  manager The {@link FactoryManager} through which the request is made
     * @return         The {@link ChannelFactory}-ies used to create channels for agent forwarding on the client side.
     *                 If {@code null} or empty, agent forwarding is not available.
     */
    List getChannelForwardingFactories(FactoryManager manager);

    /**
     * Create an SshAgent that can be used on the client side by the authentication process to send possible keys.
     *
     * @param  session     the {@link Session} the {@link SshAgent} is to be created for; may be {@code null}
     * @param  manager     The {@link FactoryManager} instance
     * @return             The {@link SshAgent} instance, or {@code null} if no SSH agent shall be used
     * @throws IOException If failed to create the client
     */
    SshAgent createClient(Session session, FactoryManager manager) throws IOException;

    /**
     * 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.
     *
     * @param  service     The {@link ConnectionService} to use
     * @return             The {@link SshAgentServer} instance
     * @throws IOException If failed to create the server
     */
    SshAgentServer createServer(ConnectionService service) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy