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