public interface AnalyticsHttpClientBuilderService
| Modifier and Type | Method and Description |
|---|---|
<T> T |
build(String username,
String password,
int connectTimeoutMillis,
int readTimeoutMillis,
Class<T> target,
String url)
Function to build Feign client factory.
|
<T> T |
buildWithoutInterceptor(int connectTimeoutMillis,
int readTimeoutMillis,
Class<T> target,
String url)
Function to build Feign client factory.
|
feign.Client |
newDefaultClientInstance()
Function to create new Feign client instance.
|
feign.Client newDefaultClientInstance()
<T> T build(String username, String password, int connectTimeoutMillis, int readTimeoutMillis, Class<T> target, String url)
username - User name to be used in auth headerpassword - Password to be used in auth headerconnectTimeoutMillis - Connection timeout of the requestreadTimeoutMillis - Read timeout of the requesttarget - target service stubs to be used by the factoryurl - Base url of the API to be created<T> T buildWithoutInterceptor(int connectTimeoutMillis,
int readTimeoutMillis,
Class<T> target,
String url)
connectTimeoutMillis - Connection timeout of the requestreadTimeoutMillis - Read timeout of the requesttarget - target service stubs to be used by the factoryurl - Base url of the API to be createdCopyright © 2019 WSO2. All rights reserved.