blob: b4efb94c6e1483057b9ef77779e2d58f667ace0b [file] [log] [blame]
package com.intellij.remoteServer.runtime.deployment.debug;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* @author nik
*/
public class JavaDebugConnectionData implements DebugConnectionData {
private final String myHost;
private final int myPort;
public JavaDebugConnectionData(@NotNull String host, int port) {
myHost = host;
myPort = port;
}
@NotNull
public String getHost() {
return myHost;
}
public int getPort() {
return myPort;
}
@Nullable
public JavaDebugServerModeHandler getServerModeHandler() {
return null;
}
}