com.clickzetta.platform.client.api.ClientContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
package com.clickzetta.platform.client.api;
import com.clickzetta.platform.client.IgsConnectMode;
import com.clickzetta.platform.util.Pair;
import java.util.List;
import java.util.Properties;
public interface ClientContext {
boolean authentication();
String clientId();
IgsConnectMode igsConnectMode();
IgsConnectMode igsRouterMode();
Long userId();
String userName();
String password();
long instanceId();
String instanceName();
String workspace();
List> crlAddrs();
List> workerAddrs();
String url();
String lakehouseInstance();
String token();
boolean isShowDebugLog();
Properties getProperties();
void refreshAll(ClientContext context);
ClientContext mirror();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy