org.opensearch.alerting.destination.client.DestinationHttpClientPool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of notification Show documentation
Show all versions of notification Show documentation
Open Distro for Elasticsearch Notification
The newest version!
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/
package org.opensearch.alerting.destination.client;
/**
* This class provides Client to the relevant destinations
*/
public final class DestinationHttpClientPool {
private static final DestinationHttpClient httpClient = new DestinationHttpClient();
private DestinationHttpClientPool() { }
public static DestinationHttpClient getHttpClient() {
return httpClient;
}
}