Examples of AlertSettings


Examples of com.elastisys.scale.cloudadapters.commons.adapter.BaseCloudAdapterConfig.AlertSettings

   * {@link AlertSettings}.
   *
   * @param configuration
   */
  private void setUpSmtpAlerter(BaseCloudAdapterConfig configuration) {
    AlertSettings alertsConfig = configuration.getAlerts();
    if (alertsConfig != null) {
      LOG.debug("configuring SMTP alerter.");
      SendSettings sendSettings = new SendSettings(
          alertsConfig.getRecipients(), alertsConfig.getSender(),
          alertsConfig.getSubject(), alertsConfig.getSeverityFilter());
      SmtpServerSettings mailServerSettings = alertsConfig
          .getMailServer().toSmtpServerSettings();
      this.smtpAlerter.set(new EmailAlerter(mailServerSettings,
          sendSettings, standardAlertTags()));
      this.eventBus.register(this.smtpAlerter.get());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.