com.amazon.redshift.INativePlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jdbc42 Show documentation
Show all versions of redshift-jdbc42 Show documentation
Java JDBC 4.2 (JRE 8+) driver for Redshift database
The newest version!
package com.amazon.redshift;
import com.amazon.redshift.logger.RedshiftLogger;
import com.amazon.redshift.util.RedshiftException;
public interface INativePlugin
{
void addParameter(String key, String value);
void setLogger(RedshiftLogger log);
String getPluginSpecificCacheKey();
String getIdpToken() throws RedshiftException;
String getCacheKey();
NativeTokenHolder getCredentials() throws RedshiftException;
void refresh() throws RedshiftException;
}