com.quali.cloudshell.service.SandboxServiceConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sandbox-api Show documentation
Show all versions of sandbox-api Show documentation
CloudShell Sandbox java gateway project
The newest version!
package com.quali.cloudshell.service;
import com.quali.cloudshell.api.User;
public class SandboxServiceConnection {
public final String serverAddress;
public final User user;
public final boolean ignoreSsl;
public SandboxServiceConnection(String serverAddress, String username, String password, String domain, boolean ignoreSsl){
this.serverAddress = serverAddress;
this.ignoreSsl = ignoreSsl;
this.user = new User(username, password, domain);
}
}