com.liveperson.faas.csds.CsdsClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functions-client Show documentation
Show all versions of functions-client Show documentation
Functions client for invoking lambdas via the eventsource gateway (a.k.a Asgard)
package com.liveperson.faas.csds;
import com.liveperson.faas.exception.CsdsRetrievalException;
/**
* Retrieves base domains from LivePerson api
*
* @author sschwarz
*/
public interface CsdsClient {
/**
* @param service whose name is to be retrieved
* @return the base Domain for given service
* @throws CsdsRetrievalException when service that is queried for does not exist
*/
String getDomain(String service) throws CsdsRetrievalException;
}