in deploy-runner-agent/src/main/java/jetbrains/buildServer/deployer/agent/cargo/CargoBuildProcessAdapter.java [53:67]
public CargoBuildProcessAdapter(@NotNull String target,
@NotNull String username,
@NotNull String password,
@NotNull BuildRunnerContext context,
@NotNull String sourcePath) {
super(context.getBuild().getBuildLogger());
myHost = getHost(target);
myPort = getPort(target);
myUsername = username;
myPassword = password;
myContext = context;
mySourcePath = sourcePath;
myContainerType = context.getRunnerParameters().get(DeployerRunnerConstants.PARAM_CONTAINER_TYPE);
myUseHttps = Boolean.valueOf(context.getRunnerParameters().get(CargoRunnerConstants.USE_HTTPS));
}