org.opensearch.alerting.destination.client.DestinationEmailClientPool 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 DestinationEmailClientPool {
private static final DestinationEmailClient emailClient = new DestinationEmailClient();
private DestinationEmailClientPool() { }
public static DestinationEmailClient getEmailClient() {
return emailClient;
}
}