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

com.softicar.platform.common.network.ssh.ISshLocalPortForward Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.network.ssh;

/**
 * Interface of a local port forward using SSH.
 * 

* A local port forward allocates a local port which is then forwarded through * an SSH tunnel to another port on a remote host. For more information about * this concept, see the manual for the SSH command line client, concerning the * -L option. * * @author Oliver Richers */ public interface ISshLocalPortForward extends AutoCloseable { ISshLocalPortForwardConfiguration getConfiguration(); int getLocalPort(); @Override void close(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy