Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
    <bean id="alertsConfiguration" class="org.cleverbusopenhubframework.openhub.core.alerts.AlertsPropertiesConfiguration">
        <constructor-arg ref="confProperties"/>
    </bean>
    <bean id="alertsCheckingService" class="org.openhubframework.cleverbusopenhub.core.alerts.AlertsCheckingServiceDbImpl"/>
    <bean class="org.cleverbus.core.alerts.EmailAlertListenerSupport"/>

...

Reaction to alert activation

There are listeners org.openhubframework.cleverbusopenhub.spi.alerts.AlertListener which are called when specified alert is activated. 

There is default org.openhubframework.cleverbusopenhub.core.alerts.EmailAlertListenerSupport implementation that  sends email notifications to admin emails.

...