blob: bf08898f2791a82d8c9b4b7620ed98e57179eea6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.remote;
import org.eclipse.ptp.remote.exception.RemoteConnectionException;
public interface IRemoteConnection {
/**
* Get unique name for this connection.
*
* @return connection name
*/
public String getName();
/**
* Gets the implementation dependent hostname for this connection
*
* return hostname
*/
public String getHostname();
/**
* Gets the username for this connection
*
* return username
*/
public String getUsername();
/**
* @param hostname
*/
public void setHostname(String hostname);
/**
* @param username
*/
public void setUsername(String username);
/**
* Test if this connection supports forwarding of TCP connections
*
* @return true if TCP port forwarding is supported
*/
public boolean supportsTCPPortForwarding();
/**
* Forward local port localPort to remote port remotePort on remote machine fwdAddress. If this
* connection is not to fwdAddress, the port will be routed via the connection machine to
* fwdAddress.
*
* @param localPort local port to forward
* @param remoteAddress address of remote machine
* @param remotePort remote port on remote machine
* @throws RemoteConnectionException
*/
public void forwardLocalTCPPort(int localPort, String fwdAddress, int fwdPort) throws RemoteConnectionException;
/**
* Forward remote port remotePort to port fwdPort on machine fwdAddress. If fwdAddress is not the
* local machine, the port will be routed via the local machine to fwdAddress.
*
* @param remotePort remote port to forward
* @param fwdAddress address of recipient machine
* @param fwdPort port on recipient machine
* @throws RemoteConnectionException
*/
public void forwardRemoteTCPPort(int remotePort, String fwdAddress, int fwdPort) throws RemoteConnectionException;
}