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

org.xbib.net.scheme.SshScheme Maven / Gradle / Ivy

package org.xbib.net.scheme;

/**
 * Secure shell scheme.
 */
class SshScheme extends HttpScheme {

    SshScheme() {
        super("ssh", 22);
    }

    SshScheme(String name, int port) {
        super(name, port);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy