Package org.lightfish.business.escalation.boundary.notification.transmitter

Examples of org.lightfish.business.escalation.boundary.notification.transmitter.Transmitter


    public void onEscalationBrowserRequest(@Observes Escalation escalation) {
        for(Notifier notifier: notifierStore.all(true)){
            try {
                LOG.fine("Sending notification to " + notifier);
               
                Transmitter transmitter = retrieveTransmitter(notifier.getTransmitterId());
                asyncService.send(transmitter, notifier.getConfiguration(), escalation);
            } catch (NotificationException ex) {
                LOG.log(Level.WARNING,
                        "Failed to send escalation notification for " + escalation + " to " + notifier, ex);
            }
View Full Code Here

TOP

Related Classes of org.lightfish.business.escalation.boundary.notification.transmitter.Transmitter

Copyright © 2018 www.massapicom. 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.