Package com.sparc.knappsack.components.events

Examples of com.sparc.knappsack.components.events.EventDelivery


        if (domainUserRequest != null) {

            domainUserRequest.setStatus(Status.DECLINED);
//            update(domainUserRequest);

            EventDelivery deliveryMechanism = eventDeliveryFactory.getEventDelivery(EventType.DOMAIN_USER_ACCESS_REQUEST_CONFIRMATION);
            if (deliveryMechanism != null) {
                success = deliveryMechanism.sendNotifications(domainUserRequest);
                if (!success) {
                    log.error("Error sending Domain User Access Request Confirmation Email:", domainUserRequest);
                }
            }
View Full Code Here

TOP

Related Classes of com.sparc.knappsack.components.events.EventDelivery

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.