Package org.apache.lenya.notification

Examples of org.apache.lenya.notification.NotificationException


        try {
            inboxManager = (InboxManager) this.manager.lookup(InboxManager.ROLE);
            Inbox inbox = inboxManager.getInbox(user);
            inbox.add(message);
        } catch (ServiceException e) {
            throw new NotificationException(e);
        } finally {
            if (inboxManager != null) {
                this.manager.release(inboxManager);
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.lenya.notification.NotificationException

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.