com.quali.cloudshell.QsServerDetails 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;
public class QsServerDetails {
public final String serverAddress;
public final String user;
public final String pw;
public final String domain;
public final boolean ignoreSSL;
public QsServerDetails(String serverAddress, String user, String pw, String domain, boolean ignoreSsl) {
this.serverAddress = serverAddress;
this.user = user;
this.pw = pw;
this.domain = domain;
this.ignoreSSL = ignoreSsl;
}
}