blob: efeb9bf176e6971f6e57074c9b9717bd16d98bab [file] [log] [blame]
package com.intellij.remote;
import com.intellij.openapi.util.Pair;
import com.intellij.remote.RemoteSdkException;
import com.intellij.util.PathMappingSettings;
import java.util.List;
/**
* @author traff
*/
public interface RemoteProcessHandlerBase {
PathMappingSettings getMappingSettings();
Pair<String, Integer> obtainRemoteSocket() throws RemoteSdkException;
void addRemoteForwarding(int remotePort, int localPort);
List<PathMappingSettings.PathMapping> getFileMappings();
}