com.algolia.search.DefaultRecommendationClient Maven / Gradle / Ivy
The newest version!
package com.algolia.search;
import javax.annotation.Nonnull;
/**
* Algolia's REST recommendation client that wraps an instance of the transporter {@link
* HttpTransport} which wraps the HTTP Client This client allows to build typed requests and read
* typed responses. Requests are made under the Algolia's retry-strategy. This client is intended to
* be reused and it's thread-safe.
*
* @see Algolia.com
* @deprecated use {@link DefaultPersonalizationClient} instead
*/
@SuppressWarnings("WeakerAccess")
@Deprecated
public class DefaultRecommendationClient {
/**
* Creates a {@link RecommendationClient} with the given credentials The default HttpClient
* implementation is {@link ApacheHttpRequester}
*
* @param applicationID The Algolia Application ID
* @param apiKey The Algolia API Key
* @param region Region where your personalization data is stored and processed.
* @throws NullPointerException If one of the following ApplicationID/ApiKey is null
* @throws IllegalArgumentException If the ApplicationID or the APIKey are empty
*/
public static RecommendationClient create(
@Nonnull String applicationID, @Nonnull String apiKey, @Nonnull String region) {
return create(new RecommendationConfig.Builder(applicationID, apiKey, region).build());
}
/**
* Creates a default {@link RecommendationClient} with the given {@link SearchConfig}. The default
* HttpClient implementation is {@link ApacheHttpRequester}
*
* @param config The configuration allows you to advanced configuration of the clients such as
* batch size or custom hosts and timeout.
* @throws NullPointerException If one of the following ApplicationID/ApiKey/Config is null
* @throws IllegalArgumentException If the ApplicationID or the APIKey are empty
*/
public static RecommendationClient create(@Nonnull RecommendationConfig config) {
return new RecommendationClient(config, new ApacheHttpRequester(config));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy