com.quali.cloudshell.service.SandboxAPIAuthProvider 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;
import com.quali.cloudshell.qsExceptions.SandboxApiException;
import java.io.IOException;
interface SandboxAPIAuthProvider {
String getAuthToken();
void loginAndSetAuthToken() throws IOException, SandboxApiException;
void setAuthToken(String token);
}