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

org.apache.sshd.client.simple.SimpleSessionClient 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.client.simple;

import java.io.IOException;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.nio.channels.Channel;
import java.security.KeyPair;
import java.util.Objects;

import org.apache.sshd.client.session.ClientSession;
import org.apache.sshd.common.util.ValidateUtils;

/**
 * A simplified synchronous API for creating client sessions
 *
 * @author Apache MINA SSHD Project
 */
public interface SimpleSessionClient extends SimpleClientConfigurator, Channel {
    /**
     * Creates a session on the default port and logs in using the provided credentials
     *
     * @param  host        The target host name or address
     * @param  username    Username
     * @param  password    Password
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    default ClientSession sessionLogin(String host, String username, String password) throws IOException {
        return sessionLogin(host, DEFAULT_PORT, username, password);
    }

    /**
     * Creates a session and logs in using the provided credentials
     *
     * @param  host        The target host name or address
     * @param  port        The target port
     * @param  username    Username
     * @param  password    Password
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    default ClientSession sessionLogin(String host, int port, String username, String password) throws IOException {
        return sessionLogin(InetAddress.getByName(ValidateUtils.checkNotNullAndNotEmpty(host, "No host")), port, username,
                password);
    }

    /**
     * Creates a session on the default port and logs in using the provided credentials
     *
     * @param  host        The target host name or address
     * @param  username    Username
     * @param  identity    The {@link KeyPair} identity
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    default ClientSession sessionLogin(String host, String username, KeyPair identity) throws IOException {
        return sessionLogin(host, DEFAULT_PORT, username, identity);
    }

    /**
     * Creates a session and logs in using the provided credentials
     *
     * @param  host        The target host name or address
     * @param  port        The target port
     * @param  username    Username
     * @param  identity    The {@link KeyPair} identity
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    default ClientSession sessionLogin(String host, int port, String username, KeyPair identity) throws IOException {
        return sessionLogin(InetAddress.getByName(ValidateUtils.checkNotNullAndNotEmpty(host, "No host")), port, username,
                identity);
    }

    /**
     * Creates a session on the default port and logs in using the provided credentials
     *
     * @param  host        The target host {@link InetAddress}
     * @param  username    Username
     * @param  password    Password
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    default ClientSession sessionLogin(InetAddress host, String username, String password) throws IOException {
        return sessionLogin(host, DEFAULT_PORT, username, password);
    }

    /**
     * Creates a session and logs in using the provided credentials
     *
     * @param  host        The target host {@link InetAddress}
     * @param  port        The target port
     * @param  username    Username
     * @param  password    Password
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    default ClientSession sessionLogin(InetAddress host, int port, String username, String password) throws IOException {
        return sessionLogin(new InetSocketAddress(Objects.requireNonNull(host, "No host address"), port), username, password);
    }

    /**
     * Creates a session on the default port and logs in using the provided credentials
     *
     * @param  host        The target host {@link InetAddress}
     * @param  username    Username
     * @param  identity    The {@link KeyPair} identity
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    default ClientSession sessionLogin(InetAddress host, String username, KeyPair identity) throws IOException {
        return sessionLogin(host, DEFAULT_PORT, username, identity);
    }

    /**
     * Creates a session and logs in using the provided credentials
     *
     * @param  host        The target host {@link InetAddress}
     * @param  port        The target port
     * @param  username    Username
     * @param  identity    The {@link KeyPair} identity
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    default ClientSession sessionLogin(InetAddress host, int port, String username, KeyPair identity) throws IOException {
        return sessionLogin(new InetSocketAddress(Objects.requireNonNull(host, "No host address"), port), username, identity);
    }

    /**
     * Creates a session and logs in using the provided credentials
     *
     * @param  target      The target {@link SocketAddress}
     * @param  username    Username
     * @param  password    Password
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    ClientSession sessionLogin(SocketAddress target, String username, String password) throws IOException;

    /**
     * Creates a session and logs in using the provided credentials
     *
     * @param  target      The target {@link SocketAddress}
     * @param  username    Username
     * @param  identity    The {@link KeyPair} identity
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    ClientSession sessionLogin(SocketAddress target, String username, KeyPair identity) throws IOException;

    /**
     * Creates a session and logs in using the provided credentials
     *
     * @param  uri         The target uri
     * @param  password    Password
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    ClientSession sessionLogin(String uri, String password) throws IOException;

    /**
     * Creates a session and logs in using the provided credentials
     *
     * @param  uri         The target uri
     * @param  identity    The {@link KeyPair} identity
     * @return             Created {@link ClientSession}
     * @throws IOException If failed to login or authenticate
     */
    ClientSession sessionLogin(String uri, KeyPair identity) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy