gov.nasa.pds.api.registry.ConnectionContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of registry-api-service Show documentation
Show all versions of registry-api-service Show documentation
Registry API Service contributing to the PDS Federated Search API
package gov.nasa.pds.api.registry;
import java.util.List;
import org.opensearch.client.opensearch.OpenSearchClient;
import org.opensearch.client.opensearch.generic.OpenSearchGenericClient;
public interface ConnectionContext {
public OpenSearchClient getOpenSearchClient();
public OpenSearchGenericClient getOpenSearchGenericClient();
public String getHost();
public List getRegistryIndices();
public List getRegistryRefIndices();
public int getTimeOutSeconds();
public List getArchiveStatus();
}